diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 70594cfe32c..45652f18036 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -61,8 +61,10 @@ prettier.config.js @iotaledger/boxfish @iotaledger/tooling turbo.json @iotaledger/boxfish @iotaledger/tooling vercel.json @iotaledger/boxfish @iotaledger/tooling -# Docs are for DevEx to approve upon +# Docs and examples are for DevEx to approve upon /docs/ @iotaledger/devx +/examples/ @iotaledger/devx + # Override ownership of Boxfish Studio and the tooling team for the following files /docs/**/package.json @iotaledger/devx /docs/**/vercel.json @iotaledger/devx diff --git a/.github/workflows/_cargo_deny.yml b/.github/workflows/_cargo_deny.yml index f8249b38ed0..3524eed78a3 100644 --- a/.github/workflows/_cargo_deny.yml +++ b/.github/workflows/_cargo_deny.yml @@ -2,35 +2,31 @@ name: Cargo deny on: workflow_call: - secrets: - SSH_PRIVATE_KEY_IOTA_CI: - required: true - SSH_GITHUB_KNOWN_HOSTS: - required: true + inputs: + manifest-path: + type: string + required: false + default: "./Cargo.toml" concurrency: group: cargo-deny-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: - rust-crates: - name: cargo-deny (advisories, licenses, bans, ...) + bans-licenses-sources: + name: cargo deny (bans, licenses, sources) runs-on: [self-hosted] steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - - uses: EmbarkStudios/cargo-deny-action@8371184bd11e21dcf8ac82ebf8c9c9f74ebf7268 # pin@v2 + - uses: taiki-e/install-action@684122deb17127bf60d1d99224e12e8fc0012210 # v2.44.58 with: - ssh-key: ${{ secrets.SSH_PRIVATE_KEY_IOTA_CI }} - ssh-known-hosts: ${{ secrets.SSH_GITHUB_KNOWN_HOSTS }} - use-git-cli: true + tool: cargo-deny + - run: cargo deny --manifest-path ${{ inputs.manifest-path || './Cargo.toml' }} check bans licenses sources - external-crates: - name: cargo-deny (advisories, licenses, bans, ...) + advisories: + name: cargo deny (advisories) runs-on: [self-hosted] steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - - uses: EmbarkStudios/cargo-deny-action@8371184bd11e21dcf8ac82ebf8c9c9f74ebf7268 # pin@v2 + - uses: taiki-e/install-action@684122deb17127bf60d1d99224e12e8fc0012210 # v2.44.58 with: - ssh-key: ${{ secrets.SSH_PRIVATE_KEY_IOTA_CI }} - ssh-known-hosts: ${{ secrets.SSH_GITHUB_KNOWN_HOSTS }} - use-git-cli: true + tool: cargo-deny + - run: cargo deny --manifest-path ${{ inputs.manifest-path || './Cargo.toml' }} check advisories diff --git a/.github/workflows/_e2e.yml b/.github/workflows/_e2e.yml index 8956e3e8293..6438470f121 100644 --- a/.github/workflows/_e2e.yml +++ b/.github/workflows/_e2e.yml @@ -88,6 +88,14 @@ jobs: path: apps/explorer/playwright-report/ retention-days: 30 + - name: Build Kiosk + if: inputs.isRust || inputs.isTypescriptSDK + run: pnpm turbo --filter=@iota/kiosk build + + - name: Run Kiosk e2e tests + if: inputs.isRust || inputs.isTypescriptSDK + run: pnpm dlx concurrently --kill-others --success command-1 "$E2E_RUN_LOCAL_NET_CMD" 'pnpm --filter=@iota/kiosk test:e2e' + - name: Run Local net run: cargo run --bin iota start --force-regenesis --with-faucet --epoch-duration-ms 10000 & diff --git a/.github/workflows/_rust.yml b/.github/workflows/_rust.yml index 2ae14b1f89b..e9564763513 100644 --- a/.github/workflows/_rust.yml +++ b/.github/workflows/_rust.yml @@ -42,7 +42,6 @@ jobs: deny: uses: ./.github/workflows/_cargo_deny.yml - secrets: inherit rust-tests: if: | diff --git a/.github/workflows/_rust_lints.yml b/.github/workflows/_rust_lints.yml index fb7e75eb51b..f63dfb5cab0 100644 --- a/.github/workflows/_rust_lints.yml +++ b/.github/workflows/_rust_lints.yml @@ -51,10 +51,6 @@ jobs: - rustfmt runs-on: [self-hosted] steps: - - uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # pin@v3 - # this avoids rate-limiting - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 # TODO(bradh): debug and re-enable this; the caching is breaking the clippy build # Enable caching of the 'librocksdb-sys' crate by additionally caching the diff --git a/.github/workflows/_vercel_deploy.yml b/.github/workflows/_vercel_deploy.yml index b1efe39a2ea..2047ca432ab 100644 --- a/.github/workflows/_vercel_deploy.yml +++ b/.github/workflows/_vercel_deploy.yml @@ -40,14 +40,16 @@ jobs: secrets: inherit with: isProd: false + isStaging: false - explorer-prod: - name: Vercel Explorer Production + explorer-staging: + name: Vercel Explorer Staging if: inputs.isDevelop uses: ./.github/workflows/apps_explorer_deploy.yml secrets: inherit with: - isProd: true + isProd: false + isStaging: true ui-kit-preview: name: Vercel UI Kit Preview diff --git a/.github/workflows/apps_explorer_deploy.yml b/.github/workflows/apps_explorer_deploy.yml index fe482d68102..10badc709fc 100644 --- a/.github/workflows/apps_explorer_deploy.yml +++ b/.github/workflows/apps_explorer_deploy.yml @@ -3,14 +3,25 @@ name: Deploy for Explorer env: VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} VERCEL_PROJECT_ID: ${{ secrets.EXPLORER_VERCEL_PROJECT_ID }} + EXPLORER_VERCEL_PROJECT_STAGING_URL: ${{ secrets.EXPLORER_VERCEL_PROJECT_STAGING_URL }} on: workflow_dispatch: + inputs: + isProd: + type: boolean + required: true + isStaging: + type: boolean + required: true workflow_call: inputs: isProd: type: boolean required: true + isStaging: + type: boolean + required: true jobs: deploy: @@ -64,8 +75,11 @@ jobs: id: deploy_url if: ${{ inputs.isProd == false }} run: echo "DEPLOY_URL=$(cat vercel_output.txt | awk 'END{print}')" >> $GITHUB_OUTPUT + - name: Alias Staging deploy + if: ${{ inputs.isStaging }} + run: vercel alias ${{ steps.deploy_url.outputs.DEPLOY_URL }} $EXPLORER_VERCEL_PROJECT_STAGING_URL --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_SCOPE }} - name: Comment on pull request - if: ${{ inputs.isProd == false }} + if: ${{ inputs.isProd == false && inputs.isStaging == false }} uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # pin@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 1a5765f9e14..00000000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Codecov - -on: - push: - branches: - - develop - pull_request: - branches: - - develop - types: [opened, reopened, synchronize, ready_for_review] - -jobs: - diff: - if: github.event.pull_request.draft == false - runs-on: [self-hosted] - outputs: - isRust: ${{ steps.diff.outputs.isRust }} - steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - - name: Detect Changes - uses: "./.github/actions/diffs" - id: diff - - codecov-grcov: - name: Generate code coverage - needs: diff - if: github.event.pull_request.draft == false && needs.diff.outputs.isRust == 'true' - runs-on: [self-hosted] - steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - - run: rustup component add llvm-tools-preview - # Enable caching of the 'librocksdb-sys' crate by additionally caching the - # 'librocksdb-sys' src directory which is managed by cargo - - name: Install grcov, and cache the binary - uses: baptiste0928/cargo-install@1cd874a5478fdca35d868ccc74640c5aabbb8f1b # pin@v3.0.0 - with: - crate: grcov - locked: true - - - name: Set Swap Space - uses: pierotofy/set-swap-space@master - with: - swap-size-gb: 256 - - - name: Build - uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # pin@v1.0.3 - with: - command: build - env: - RUSTFLAGS: "-Cinstrument-coverage" - RUSTDOCFLAGS: "-Cinstrument-coverage" - - - name: Run tests - env: - RUSTFLAGS: "-Cinstrument-coverage" - RUSTDOCFLAGS: "-Cinstrument-coverage" - LLVM_PROFILE_FILE: "codecov-instrumentation-%p-%m.profraw" - run: cargo test - - - name: Run grcov - run: grcov . --binary-path target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov - - - name: Upload to codecov.io - uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # pin v4.0.1 diff --git a/.github/workflows/links_checker.yml b/.github/workflows/links_checker.yml index 20eb08ae17b..a56e979ac39 100644 --- a/.github/workflows/links_checker.yml +++ b/.github/workflows/links_checker.yml @@ -9,7 +9,7 @@ on: - cron: "0 0 * * *" jobs: - link_checker: + links-checker: name: Check links and create automated issue if needed runs-on: self-hosted env: @@ -20,8 +20,9 @@ jobs: - name: Check all links at *.md and doc files id: lychee - uses: lycheeverse/lychee-action@ec3ed119d4f44ad2673a7232460dc7dff59d2421 # pin@v1.8.0 + uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # pin@v1.10.0 with: + token: ${{ secrets.GITHUB_TOKEN }} output: ${{ env.LYCHEE_OUT }} format: markdown ## Do not fail this step on broken links @@ -35,42 +36,23 @@ jobs: --max-concurrency 10 --no-progress './**/*.md' - env: - ## Avoid rate limiting when checking github.com links - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Find the last report issue open uses: micalevisk/last-issue-action@305829d9728f47beb0029417167a0af890edfd6e # pin@v2.1 id: last_issue with: state: open - labels: | - report - automated issue + labels: broken-links env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create issue from report file - if: steps.last_issue.outputs.has_found == 'false' - uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # pin@v4 - with: - title: Link checker report - content-filepath: ${{ env.LYCHEE_OUT }} - issue-number: ${{ steps.last_issue.outputs.issue_number }} - labels: | - report - automated issue - - - name: Update last report open issue created - if: steps.last_issue.outputs.has_found == 'true' + - name: Create or update report uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # pin@v4 with: title: Link checker report content-filepath: ${{ env.LYCHEE_OUT }} issue-number: ${{ steps.last_issue.outputs.issue_number }} - labels: | - report - automated issue + labels: broken-links - name: Close last report open issue if: steps.lychee.outputs.exit_code == 0 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 94307357dfb..4af2b2bcc34 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -29,6 +29,11 @@ env: RUST_BACKTRACE: short jobs: + cargo-deny-external: + uses: ./.github/workflows/_cargo_deny.yml + with: + manifest-path: external-crates/move/Cargo.toml + release: name: build release binaries runs-on: ${{ matrix.os }} diff --git a/Cargo.lock b/Cargo.lock index 977d527739b..7a2cb4b590d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,6 +305,15 @@ dependencies = [ "backtrace", ] +[[package]] +name = "approx" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" +dependencies = [ + "num-traits", +] + [[package]] name = "arbitrary" version = "1.3.2" @@ -1858,7 +1867,7 @@ dependencies = [ "bitflags 2.6.0", "cexpr", "clang-sys", - "itertools 0.10.5", + "itertools 0.12.1", "lazy_static", "lazycell", "log", @@ -4691,9 +4700,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ "futures-core", "futures-sink", @@ -4701,9 +4710,9 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] name = "futures-executor" @@ -4719,9 +4728,9 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-locks" @@ -4735,9 +4744,9 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2 1.0.86", "quote 1.0.37", @@ -4746,15 +4755,15 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] name = "futures-task" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" @@ -4768,9 +4777,9 @@ dependencies = [ [[package]] name = "futures-util" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ "futures-channel", "futures-core", @@ -6909,6 +6918,7 @@ dependencies = [ "serde_json", "shared-crypto", "signature 1.6.4", + "statrs", "tap", "telemetry-subscribers", "thiserror", @@ -8879,7 +8889,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -9122,6 +9132,16 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +[[package]] +name = "matrixmultiply" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" +dependencies = [ + "autocfg", + "rawpointer", +] + [[package]] name = "md-5" version = "0.10.6" @@ -10151,6 +10171,35 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "034a0ad7deebf0c2abcf2435950a6666c3c15ea9d8fad0c0f48efa8a7f843fed" +[[package]] +name = "nalgebra" +version = "0.32.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4" +dependencies = [ + "approx", + "matrixmultiply", + "nalgebra-macros", + "num-complex", + "num-rational", + "num-traits", + "rand 0.8.5", + "rand_distr", + "simba", + "typenum", +] + +[[package]] +name = "nalgebra-macros" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" +dependencies = [ + "proc-macro2 1.0.86", + "quote 1.0.37", + "syn 2.0.77", +] + [[package]] name = "named-lock" version = "0.2.0" @@ -11865,7 +11914,7 @@ checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" dependencies = [ "bytes", "heck 0.5.0", - "itertools 0.10.5", + "itertools 0.13.0", "log", "multimap", "once_cell", @@ -11885,7 +11934,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.13.0", "proc-macro2 1.0.86", "quote 1.0.37", "syn 2.0.77", @@ -12117,6 +12166,16 @@ dependencies = [ "getrandom 0.2.15", ] +[[package]] +name = "rand_distr" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + [[package]] name = "rand_hc" version = "0.2.0" @@ -12171,6 +12230,12 @@ dependencies = [ "bitflags 2.6.0", ] +[[package]] +name = "rawpointer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" + [[package]] name = "rayon" version = "1.10.0" @@ -13050,6 +13115,15 @@ version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +[[package]] +name = "safe_arch" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" +dependencies = [ + "bytemuck", +] + [[package]] name = "salsa20" version = "0.10.2" @@ -13641,6 +13715,19 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "simba" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" +dependencies = [ + "approx", + "num-complex", + "num-traits", + "paste", + "wide", +] + [[package]] name = "simd-adler32" version = "0.3.7" @@ -14012,6 +14099,18 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7beae5182595e9a8b683fa98c4317f956c9a2dec3b9716990d20023cc60c766" +[[package]] +name = "statrs" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f697a07e4606a0a25c044de247e583a330dbb1731d11bc7350b81f48ad567255" +dependencies = [ + "approx", + "nalgebra", + "num-traits", + "rand 0.8.5", +] + [[package]] name = "string_cache" version = "0.8.7" @@ -15305,7 +15404,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", - "rand 0.7.3", + "rand 0.8.5", "static_assertions", ] @@ -15827,6 +15926,16 @@ dependencies = [ "web-sys", ] +[[package]] +name = "wide" +version = "0.7.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b828f995bf1e9622031f8009f8481a85406ce1f4d4588ff746d872043e855690" +dependencies = [ + "bytemuck", + "safe_arch", +] + [[package]] name = "widestring" version = "0.5.1" diff --git a/apps/apps-backend/src/features/features.controller.ts b/apps/apps-backend/src/features/features.controller.ts index e71e4b326a4..82bbafbe419 100644 --- a/apps/apps-backend/src/features/features.controller.ts +++ b/apps/apps-backend/src/features/features.controller.ts @@ -64,10 +64,10 @@ export class FeaturesController { [Feature.AccountFinder]: { defaultValue: false, }, - [Feature.WalletDashboardMigration]: { + [Feature.StardustMigration]: { defaultValue: false, }, - [Feature.WalletDashboardSupplyIncreaseVesting]: { + [Feature.SupplyIncreaseVesting]: { defaultValue: false, }, }, diff --git a/apps/explorer/src/components/footer/Footer.tsx b/apps/explorer/src/components/footer/Footer.tsx index 58f909779bc..e5f17ca794f 100644 --- a/apps/explorer/src/components/footer/Footer.tsx +++ b/apps/explorer/src/components/footer/Footer.tsx @@ -45,6 +45,7 @@ function Footer(): JSX.Element {
+

{EXPLORER_REV}

); } diff --git a/apps/explorer/src/components/ui/InternalLink.tsx b/apps/explorer/src/components/ui/InternalLink.tsx index 22dfe4d4ee5..64ec36a573a 100644 --- a/apps/explorer/src/components/ui/InternalLink.tsx +++ b/apps/explorer/src/components/ui/InternalLink.tsx @@ -2,7 +2,7 @@ // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 -import { formatAddress, formatDigest } from '@iota/iota-sdk/utils'; +import { formatAddress, formatDigest, formatType } from '@iota/iota-sdk/utils'; import { type ReactNode } from 'react'; import { Link, type LinkProps } from '~/components/ui'; @@ -48,6 +48,6 @@ export const CheckpointSequenceLink = createInternalLink('checkpoint', 'sequence export const AddressLink = createInternalLink('address', 'address', (addressOrNs) => formatAddress(addressOrNs), ); -export const ObjectLink = createInternalLink('object', 'objectId', formatAddress); +export const ObjectLink = createInternalLink('object', 'objectId', formatType); export const TransactionLink = createInternalLink('txblock', 'digest', formatDigest); export const ValidatorLink = createInternalLink('validator', 'address', formatAddress); diff --git a/apps/explorer/src/lib/ui/utils/generateObjectListColumns.tsx b/apps/explorer/src/lib/ui/utils/generateObjectListColumns.tsx index 223f4c35305..6debf9d9cc0 100644 --- a/apps/explorer/src/lib/ui/utils/generateObjectListColumns.tsx +++ b/apps/explorer/src/lib/ui/utils/generateObjectListColumns.tsx @@ -4,11 +4,11 @@ import { TableCellBase, TableCellText } from '@iota/apps-ui-kit'; import type { ColumnDef } from '@tanstack/react-table'; -import { parseObjectType, trimStdLibPrefix } from '~/lib'; -import { ObjectVideoImage, ObjectLink } from '~/components'; import type { IotaObjectResponse } from '@iota/iota-sdk/client'; +import { formatAddress, formatType } from '@iota/iota-sdk/utils'; +import { ObjectLink, ObjectVideoImage } from '~/components'; import { useResolveVideo } from '~/hooks'; -import { formatAddress } from '@iota/iota-sdk/utils'; +import { parseObjectType, trimStdLibPrefix } from '~/lib'; function Asset({ object }: { object: IotaObjectResponse }) { const video = useResolveVideo(object); @@ -56,7 +56,7 @@ export function generateObjectListColumns(): ColumnDef[] { cell({ row: { original: object } }) { const objectId = object?.data?.objectId; if (!objectId) return null; - const type = trimStdLibPrefix(parseObjectType(object)); + const type = formatType(trimStdLibPrefix(parseObjectType(object))); return ( diff --git a/apps/explorer/src/lib/ui/utils/generateTransactionsTableColumns.tsx b/apps/explorer/src/lib/ui/utils/generateTransactionsTableColumns.tsx index 09f3954bc5f..3cc12a45e2a 100644 --- a/apps/explorer/src/lib/ui/utils/generateTransactionsTableColumns.tsx +++ b/apps/explorer/src/lib/ui/utils/generateTransactionsTableColumns.tsx @@ -8,7 +8,7 @@ import type { IotaTransactionBlockKind, IotaTransactionBlockResponse } from '@io import { TableCellBase, TableCellText } from '@iota/apps-ui-kit'; import type { ColumnDef } from '@tanstack/react-table'; import { AddressLink, TransactionLink } from '../../../components/ui'; -import { formatAddress, NANOS_PER_IOTA } from '@iota/iota-sdk/utils'; +import { formatAddress, formatDigest, NANOS_PER_IOTA } from '@iota/iota-sdk/utils'; import { getElapsedTime } from '~/pages/epochs/utils'; /** @@ -25,7 +25,7 @@ export function generateTransactionsTableColumns(): ColumnDef {formatAddress(digest)}} + label={{formatDigest(digest)}} /> ); diff --git a/apps/explorer/src/pages/object-result/views/ObjectView.tsx b/apps/explorer/src/pages/object-result/views/ObjectView.tsx index 57003094f59..d9c4f427ebc 100644 --- a/apps/explorer/src/pages/object-result/views/ObjectView.tsx +++ b/apps/explorer/src/pages/object-result/views/ObjectView.tsx @@ -7,6 +7,7 @@ import { CoinFormat, useFormatCoin } from '@iota/core'; import { type IotaObjectResponse, type ObjectOwner } from '@iota/iota-sdk/client'; import { formatAddress, + formatDigest, IOTA_TYPE_ARG, normalizeStructTag, parseStructTag, @@ -113,12 +114,11 @@ function TypeCard({ objectType }: TypeCardCardProps): JSX.Element { }; const normalizedStructTag = normalizeStructTag(structTag); - return ( + {normalizedStructTag} } @@ -144,7 +144,7 @@ function LastTxBlockCard({ digest }: LastTxBlockCardProps): JSX.Element { return ( {formatAddress(digest)}} + value={{formatDigest(digest)}} /> ); } diff --git a/apps/explorer/src/vite-env.d.ts b/apps/explorer/src/vite-env.d.ts index 1fb048eaebd..b7502d7b2a0 100644 --- a/apps/explorer/src/vite-env.d.ts +++ b/apps/explorer/src/vite-env.d.ts @@ -4,3 +4,5 @@ /// /// + +declare const EXPLORER_REV: string; diff --git a/apps/explorer/vite.config.ts b/apps/explorer/vite.config.ts index 707bf8ef482..c55f9bda33d 100644 --- a/apps/explorer/vite.config.ts +++ b/apps/explorer/vite.config.ts @@ -4,11 +4,13 @@ /// import react from '@vitejs/plugin-react'; +import { execSync } from 'child_process'; import { defineConfig } from 'vite'; import svgr from 'vite-plugin-svgr'; import { configDefaults } from 'vitest/config'; process.env.VITE_VERCEL_ENV = process.env.VERCEL_ENV || 'development'; +const EXPLORER_REV = execSync('git rev-parse HEAD').toString().trim().toString(); // https://vitejs.dev/config/ export default defineConfig({ @@ -30,4 +32,7 @@ export default defineConfig({ '~': new URL('./src', import.meta.url).pathname, }, }, + define: { + EXPLORER_REV: JSON.stringify(EXPLORER_REV), + }, }); diff --git a/apps/ui-kit/src/lib/components/atoms/panel/Panel.tsx b/apps/ui-kit/src/lib/components/atoms/panel/Panel.tsx index 54cd58451d2..f50a601fed0 100644 --- a/apps/ui-kit/src/lib/components/atoms/panel/Panel.tsx +++ b/apps/ui-kit/src/lib/components/atoms/panel/Panel.tsx @@ -9,22 +9,22 @@ interface PanelProps { * Show or hide border around the panel. */ hasBorder?: boolean; + /** + * Background color of the panel. + */ + bgColor?: string; } export function Panel({ children, hasBorder, + bgColor = 'bg-neutral-100 dark:bg-neutral-10', }: React.PropsWithChildren): React.JSX.Element { const borderClass = hasBorder ? 'border border-shader-neutral-light-8 dark:border-shader-neutral-dark-8' : 'border border-transparent'; return ( -
+
{children}
); diff --git a/apps/wallet-dashboard/app/(protected)/home/page.tsx b/apps/wallet-dashboard/app/(protected)/home/page.tsx index 51dbf3277ce..0ffe5f2eb76 100644 --- a/apps/wallet-dashboard/app/(protected)/home/page.tsx +++ b/apps/wallet-dashboard/app/(protected)/home/page.tsx @@ -2,29 +2,44 @@ // SPDX-License-Identifier: Apache-2.0 'use client'; -import { AccountBalance, MyCoins } from '@/components'; +import { AccountBalance, MyCoins, StakingOverview } from '@/components'; +import { useFeature } from '@growthbook/growthbook-react'; +import { Feature } from '@iota/core'; import { useCurrentAccount, useCurrentWallet } from '@iota/dapp-kit'; +import clsx from 'clsx'; function HomeDashboardPage(): JSX.Element { const { connectionStatus } = useCurrentWallet(); const account = useCurrentAccount(); + + const stardustMigrationEnabled = useFeature(Feature.StardustMigration).value; + // Add the logic here to check if the user has migration objects. + const needsMigration = false && stardustMigrationEnabled; + return (
{connectionStatus === 'connected' && account && ( <> -
+
- Staking -
-
- Migration +
+ {needsMigration && ( +
+ Migration +
+ )}
diff --git a/apps/wallet-dashboard/app/(protected)/layout.tsx b/apps/wallet-dashboard/app/(protected)/layout.tsx index 18168a98870..85a5b70b169 100644 --- a/apps/wallet-dashboard/app/(protected)/layout.tsx +++ b/apps/wallet-dashboard/app/(protected)/layout.tsx @@ -3,27 +3,18 @@ 'use client'; import { Notifications } from '@/components/index'; -import React, { useEffect, useState, type PropsWithChildren } from 'react'; +import React, { useEffect, type PropsWithChildren } from 'react'; import { useCurrentAccount, useCurrentWallet } from '@iota/dapp-kit'; import { Button } from '@iota/apps-ui-kit'; import { redirect } from 'next/navigation'; import { Sidebar } from './components'; import { TopNav } from './components/top-nav/TopNav'; +import { useTheme } from '@/contexts'; function DashboardLayout({ children }: PropsWithChildren): JSX.Element { - const [isDarkMode, setIsDarkMode] = useState(false); const { connectionStatus } = useCurrentWallet(); + const { theme, toggleTheme } = useTheme(); const account = useCurrentAccount(); - - const toggleDarkMode = () => { - setIsDarkMode(!isDarkMode); - if (isDarkMode) { - document.documentElement.classList.remove('dark'); - } else { - document.documentElement.classList.add('dark'); - } - }; - useEffect(() => { if (connectionStatus !== 'connected' && !account) { redirect('/'); @@ -44,7 +35,10 @@ function DashboardLayout({ children }: PropsWithChildren): JSX.Element {
-
diff --git a/apps/wallet-dashboard/app/(protected)/migrations/page.tsx b/apps/wallet-dashboard/app/(protected)/migrations/page.tsx index 01f8a8fbb4f..3549f4d2080 100644 --- a/apps/wallet-dashboard/app/(protected)/migrations/page.tsx +++ b/apps/wallet-dashboard/app/(protected)/migrations/page.tsx @@ -2,24 +2,79 @@ // SPDX-License-Identifier: Apache-2.0 'use client'; -import { useFeature } from '@growthbook/growthbook-react'; -import { Feature } from '@iota/core'; -import { useRouter } from 'next/navigation'; -import { useEffect } from 'react'; +import { VirtualList } from '@/components'; +import { + STARDUST_BASIC_OUTPUT_TYPE, + STARDUST_NFT_OUTPUT_TYPE, +} from '@/lib/constants/migration.constants'; +import { useGetOwnedObjects } from '@iota/core'; +import { useCurrentAccount, useIotaClientContext } from '@iota/dapp-kit'; +import { getNetwork, IotaObjectData } from '@iota/iota-sdk/client'; function MigrationDashboardPage(): JSX.Element { - const router = useRouter(); - const stardustMigrationEnabled = useFeature(Feature.StardustMigration).value; + const account = useCurrentAccount(); + const { network } = useIotaClientContext(); + const { explorer } = getNetwork(network); - useEffect(() => { - if (!stardustMigrationEnabled) { - router.push('/'); - } - }, [stardustMigrationEnabled, router]); + const { + data: basicOutputObjects, + fetchNextPage: fetchNextPageBasic, + hasNextPage: hasNextPageBasic, + isFetchingNextPage: isFetchingNextPageBasic, + } = useGetOwnedObjects(account?.address || '', { + StructType: STARDUST_BASIC_OUTPUT_TYPE, + }); + const { + data: nftOutputObjects, + fetchNextPage: fetchNextPageNft, + hasNextPage: hasNextPageNft, + isFetchingNextPage: isFetchingNextPageNft, + } = useGetOwnedObjects(account?.address || '', { + StructType: STARDUST_NFT_OUTPUT_TYPE, + }); + + const basicOutputs = + basicOutputObjects?.pages + .flatMap((page) => page.data) + .filter((asset) => asset.data && asset.data.objectId) + .map((response) => response.data!) ?? []; + + const nftOutputs = + nftOutputObjects?.pages + .flatMap((page) => page.data) + .filter((asset) => asset.data && asset.data.objectId) + .map((response) => response.data!) ?? []; + + const virtualItem = (asset: IotaObjectData): JSX.Element => ( + + {asset.objectId} + + ); return ( -
-

MIGRATIONS

+
+
+

Basic Outputs

+ 30} + render={virtualItem} + /> +
+
+

Nft Outputs

+ 30} + render={virtualItem} + /> +
); } diff --git a/apps/wallet-dashboard/app/globals.css b/apps/wallet-dashboard/app/globals.css index a5cf2ad80f6..0f6fa810858 100644 --- a/apps/wallet-dashboard/app/globals.css +++ b/apps/wallet-dashboard/app/globals.css @@ -20,6 +20,23 @@ body { @layer components { .home-page-grid-container { @apply grid grid-cols-1 gap-lg; + grid-template-areas: + 'balance' + 'staking' + 'coins' + 'vesting' + 'activity'; + + & + > *:where( + [style*='grid-area: balance'], + [style*='grid-area: staking'], + [style*='grid-area: migration'] + ) { + height: 200px; + } + } + .home-page-grid-container.with-migration { grid-template-areas: 'balance' 'staking' @@ -33,8 +50,17 @@ body { .home-page-grid-container { @apply grid-cols-2; grid-template-areas: - 'balance coins' + 'balance balance' + 'staking staking' + 'coins coins' + 'vesting vesting' + 'activity activity'; + } + .home-page-grid-container.with-migration { + grid-template-areas: + 'balance balance' 'staking migration' + 'coins coins' 'vesting vesting' 'activity activity'; } @@ -43,6 +69,12 @@ body { @screen md { .home-page-grid-container { @apply grid-cols-3; + grid-template-areas: + 'balance staking staking' + 'coins vesting vesting' + 'coins activity activity'; + } + .home-page-grid-container.with-migration { grid-template-areas: 'balance staking migration' 'coins vesting vesting' diff --git a/apps/wallet-dashboard/app/layout.tsx b/apps/wallet-dashboard/app/layout.tsx index a4c71f018d6..69be801bd51 100644 --- a/apps/wallet-dashboard/app/layout.tsx +++ b/apps/wallet-dashboard/app/layout.tsx @@ -2,9 +2,9 @@ // SPDX-License-Identifier: Apache-2.0 'use client'; -import { Inter } from 'next/font/google'; - import './globals.css'; +import '@iota/dapp-kit/dist/index.css'; +import { Inter } from 'next/font/google'; import { GrowthBookProvider } from '@growthbook/growthbook-react'; import { IotaClientProvider, lightTheme, darkTheme, WalletProvider } from '@iota/dapp-kit'; import { getAllNetworks, getDefaultNetwork } from '@iota/iota-sdk/client'; @@ -14,6 +14,7 @@ import '@iota/dapp-kit/dist/index.css'; import { Popup, PopupProvider } from '@/components/Popup'; import { growthbook } from '@/lib/utils'; import { Toaster } from 'react-hot-toast'; +import { ThemeProvider } from '@/contexts'; const inter = Inter({ subsets: ['latin'] }); growthbook.init(); @@ -46,11 +47,13 @@ export default function RootLayout({ }, ]} > - - {children} - - - + + + {children} + + + + diff --git a/apps/wallet-dashboard/components/index.ts b/apps/wallet-dashboard/components/index.ts index 3aad048346d..d6a47751619 100644 --- a/apps/wallet-dashboard/components/index.ts +++ b/apps/wallet-dashboard/components/index.ts @@ -18,5 +18,6 @@ export * from './Popup'; export * from './AppList'; export * from './Cards'; export * from './Buttons'; +export * from './staking-overview'; export * from './Dialogs'; export * from './ImageIcon'; diff --git a/apps/wallet-dashboard/components/staking-overview/StakingData.tsx b/apps/wallet-dashboard/components/staking-overview/StakingData.tsx new file mode 100644 index 00000000000..21a4468fe30 --- /dev/null +++ b/apps/wallet-dashboard/components/staking-overview/StakingData.tsx @@ -0,0 +1,53 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +import { LabelText, LabelTextSize, Panel, Title } from '@iota/apps-ui-kit'; +import { + formatDelegatedStake, + useFormatCoin, + useTotalDelegatedRewards, + useTotalDelegatedStake, +} from '@iota/core'; +import { DelegatedStake } from '@iota/iota-sdk/client'; +import { IOTA_TYPE_ARG } from '@iota/iota-sdk/utils'; +interface StakingDataProps { + stakingData: DelegatedStake[] | undefined; +} + +export function StakingData({ stakingData }: StakingDataProps) { + const extendedStakes = stakingData ? formatDelegatedStake(stakingData) : []; + const totalDelegatedStake = useTotalDelegatedStake(extendedStakes); + const totalDelegatedRewards = useTotalDelegatedRewards(extendedStakes); + const [formattedDelegatedStake, stakeSymbol, stakeResult] = useFormatCoin( + totalDelegatedStake, + IOTA_TYPE_ARG, + ); + const [formattedDelegatedRewards, rewardsSymbol, rewardsResult] = useFormatCoin( + totalDelegatedRewards, + IOTA_TYPE_ARG, + ); + + return ( + + + <div className="flex h-full w-full items-center gap-md p-md--rs"> + <div className="w-1/2"> + <LabelText + size={LabelTextSize.Large} + label="Staked" + text={stakeResult.isPending ? '-' : `${formattedDelegatedStake}`} + supportingLabel={stakeSymbol} + /> + </div> + <div className="w-1/2"> + <LabelText + size={LabelTextSize.Large} + label="Earned" + text={`${rewardsResult.isPending ? '-' : formattedDelegatedRewards}`} + supportingLabel={rewardsSymbol} + /> + </div> + </div> + </Panel> + ); +} diff --git a/apps/wallet-dashboard/components/staking-overview/StakingOverview.tsx b/apps/wallet-dashboard/components/staking-overview/StakingOverview.tsx new file mode 100644 index 00000000000..e96124f0d85 --- /dev/null +++ b/apps/wallet-dashboard/components/staking-overview/StakingOverview.tsx @@ -0,0 +1,26 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +import { + useGetDelegatedStake, + DELEGATED_STAKES_QUERY_REFETCH_INTERVAL, + DELEGATED_STAKES_QUERY_STALE_TIME, +} from '@iota/core'; +import { useCurrentAccount } from '@iota/dapp-kit'; +import { StartStaking } from './StartStaking'; +import { StakingData } from './StakingData'; + +export function StakingOverview() { + const account = useCurrentAccount(); + const { data: delegatedStakeData } = useGetDelegatedStake({ + address: account?.address || '', + staleTime: DELEGATED_STAKES_QUERY_STALE_TIME, + refetchInterval: DELEGATED_STAKES_QUERY_REFETCH_INTERVAL, + }); + + return (delegatedStakeData?.length ?? 0) > 0 ? ( + <StakingData stakingData={delegatedStakeData} /> + ) : ( + <StartStaking /> + ); +} diff --git a/apps/wallet-dashboard/components/staking-overview/StartStaking.tsx b/apps/wallet-dashboard/components/staking-overview/StartStaking.tsx new file mode 100644 index 00000000000..dd28cca199c --- /dev/null +++ b/apps/wallet-dashboard/components/staking-overview/StartStaking.tsx @@ -0,0 +1,56 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +import { Button, ButtonSize, ButtonType, Panel } from '@iota/apps-ui-kit'; +import { Theme, useTheme } from '@/contexts'; +import { useState } from 'react'; +import { StakeDialog } from '../Dialogs'; + +export function StartStaking() { + const { theme } = useTheme(); + const [isDialogStakeOpen, setIsDialogStakeOpen] = useState(false); + + function handleNewStake() { + setIsDialogStakeOpen(true); + } + + const videoSrc = + theme === Theme.Dark + ? 'https://files.iota.org/media/tooling/wallet-dashboard-staking-dark.mp4' + : 'https://files.iota.org/media/tooling/wallet-dashboard-staking-light.mp4'; + + return ( + <Panel bgColor="bg-secondary-90 dark:bg-secondary-10"> + <div className="flex h-full w-full justify-between"> + <div className="flex h-full w-full flex-col justify-between p-lg"> + <div className="flex flex-col gap-xxs"> + <span className="text-headline-sm text-neutral-10 dark:text-neutral-92"> + Start Staking + </span> + <span className="text-body-md text-neutral-40 dark:text-neutral-60"> + Earn Rewards + </span> + </div> + <div> + <Button + onClick={handleNewStake} + size={ButtonSize.Small} + type={ButtonType.Outlined} + text="Stake" + /> + </div> + </div> + <div className="relative w-full overflow-hidden"> + <video + src={videoSrc} + autoPlay + loop + muted + className="absolute -top-16 h-80 w-full" + ></video> + </div> + </div> + <StakeDialog isOpen={isDialogStakeOpen} setOpen={setIsDialogStakeOpen} /> + </Panel> + ); +} diff --git a/apps/wallet-dashboard/components/staking-overview/index.ts b/apps/wallet-dashboard/components/staking-overview/index.ts new file mode 100644 index 00000000000..88d8d1794ef --- /dev/null +++ b/apps/wallet-dashboard/components/staking-overview/index.ts @@ -0,0 +1,4 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +export * from './StakingOverview'; diff --git a/apps/wallet-dashboard/contexts/ThemeContext.tsx b/apps/wallet-dashboard/contexts/ThemeContext.tsx new file mode 100644 index 00000000000..2de1469e42e --- /dev/null +++ b/apps/wallet-dashboard/contexts/ThemeContext.tsx @@ -0,0 +1,38 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +import React, { createContext, useContext, useState, useEffect, ReactNode } from 'react'; + +export enum Theme { + Light = 'light', + Dark = 'dark', +} + +interface ThemeContextType { + theme: Theme; + toggleTheme: () => void; +} + +const ThemeContext = createContext<ThemeContextType | undefined>(undefined); + +export const ThemeProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const [theme, setTheme] = useState<Theme.Light | Theme.Dark>(Theme.Light); + + useEffect(() => { + document.documentElement.classList.toggle(Theme.Dark, theme === Theme.Dark); + }, [theme]); + + const toggleTheme = () => { + setTheme((prevTheme) => (prevTheme === Theme.Dark ? Theme.Light : Theme.Dark)); + }; + + return <ThemeContext.Provider value={{ theme, toggleTheme }}>{children}</ThemeContext.Provider>; +}; + +export const useTheme = (): ThemeContextType => { + const context = useContext(ThemeContext); + if (!context) { + throw new Error('useTheme must be used within a ThemeProvider'); + } + return context; +}; diff --git a/apps/wallet-dashboard/contexts/index.ts b/apps/wallet-dashboard/contexts/index.ts index d356e2485ed..fa0a87e74c4 100644 --- a/apps/wallet-dashboard/contexts/index.ts +++ b/apps/wallet-dashboard/contexts/index.ts @@ -2,3 +2,4 @@ // SPDX-License-Identifier: Apache-2.0 export * from './PopupContext'; +export * from './ThemeContext'; diff --git a/apps/wallet-dashboard/lib/constants/migration.constants.ts b/apps/wallet-dashboard/lib/constants/migration.constants.ts new file mode 100644 index 00000000000..41c57144881 --- /dev/null +++ b/apps/wallet-dashboard/lib/constants/migration.constants.ts @@ -0,0 +1,6 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 +export const STARDUST_PACKAGE_ID = + '000000000000000000000000000000000000000000000000000000000000107a'; +export const STARDUST_BASIC_OUTPUT_TYPE = `${STARDUST_PACKAGE_ID}::basic_output::BasicOutput<0x2::iota::IOTA>`; +export const STARDUST_NFT_OUTPUT_TYPE = `${STARDUST_PACKAGE_ID}::nft_output::NftOutput<0x2::iota::IOTA>`; diff --git a/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx b/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx index 290838d951f..0b37bcc2198 100644 --- a/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx +++ b/apps/wallet/src/ui/app/pages/home/nft-details/index.tsx @@ -72,19 +72,26 @@ function NFTDetailsPage() { navigate(`/nft-transfer/${nftId}`); } - function formatMetaValue(value: string) { - if (value.includes('http')) { + function formatMetaValue(value: string | object) { + if (typeof value === 'object') { return { - value: value.startsWith('http') - ? truncateString(value, 20, 8) - : formatAddress(value), - valueLink: value, + value: JSON.stringify(value), + valueLink: undefined, + }; + } else { + if (value.includes('http')) { + return { + value: value.startsWith('http') + ? truncateString(value, 20, 8) + : formatAddress(value), + valueLink: value, + }; + } + return { + value: value, + valueLink: undefined, }; } - return { - value: value, - valueLink: undefined, - }; } return ( diff --git a/crates/iota-benchmark/src/lib.rs b/crates/iota-benchmark/src/lib.rs index 065472823e7..2b807952799 100644 --- a/crates/iota-benchmark/src/lib.rs +++ b/crates/iota-benchmark/src/lib.rs @@ -645,7 +645,10 @@ impl FullNodeProxy { .build(http_url) .await?; - let resp = iota_client.read_api().get_committee_info(None).await?; + let resp = iota_client + .governance_api() + .get_committee_info(None) + .await?; let epoch = resp.epoch; let committee_vec = resp.validators; let committee_map = BTreeMap::from_iter(committee_vec.into_iter()); diff --git a/crates/iota-core/src/checkpoints/checkpoint_executor/mod.rs b/crates/iota-core/src/checkpoints/checkpoint_executor/mod.rs index 6a37ae5419a..f9a89209377 100644 --- a/crates/iota-core/src/checkpoints/checkpoint_executor/mod.rs +++ b/crates/iota-core/src/checkpoints/checkpoint_executor/mod.rs @@ -142,9 +142,6 @@ pub enum StopReason { pub struct CheckpointExecutor { mailbox: broadcast::Receiver<VerifiedCheckpoint>, - // TODO: AuthorityState is only needed because we have to call - // deprecated_insert_finalized_transactions once that code is fully deprecated we can - // remove this state: Arc<AuthorityState>, checkpoint_store: Arc<CheckpointStore>, object_cache_reader: Arc<dyn ObjectCacheRead>, diff --git a/crates/iota-e2e-tests/tests/apy_test.rs b/crates/iota-e2e-tests/tests/apy_test.rs index 63660264dfb..4f1b136d77a 100644 --- a/crates/iota-e2e-tests/tests/apy_test.rs +++ b/crates/iota-e2e-tests/tests/apy_test.rs @@ -36,12 +36,13 @@ use test_cluster::TestClusterBuilder; /// and thus gets more rewards, it still gets 25%. See the voting power /// calculation function for why that is. /// -/// Two exchanges rates are needed to calculate the APY in the API. Epoch 0 -/// always has an initial exchange rate set which cannot be used, so we need to -/// calculate APY from epoch 1 and 2. Since we need epoch 0 to start staking -/// anyway, and only have the stake of the pool at the expected number (a -/// quarter of 3.5B IOTAs) starting from epoch 1, this is totally fine. -#[ignore = "https://github.com/iotaledger/iota/issues/3552"] +/// At least two exchanges rates are needed to calculate the APY in the API. +/// Epoch 0 always has an initial exchange rate set which cannot be used, so we +/// need to calculate APY from later epochs. We use three epochs, to augment the +/// exchange-rate sample and avoid tampering the statistical estimate of the +/// APY. Since we need epoch 0 to start staking anyway, and only have the stake +/// of the pool at the expected number (a quarter of 3.5B IOTAs) starting from +/// epoch 1, this is totally fine. #[sim_test] async fn test_apy() { // We need a large stake for low enough APY values such that they are not @@ -105,8 +106,9 @@ async fn test_apy() { .sign_and_execute_transaction(&transaction) .await; - // Wait for two epochs with the new stake so we get two new exchange rates which - // are minimally needed to calculate the APY. + // Wait for three epochs with the new stake so we get an accurate + // statistical estimate of the APY. + test_cluster.wait_for_epoch(None).await; test_cluster.wait_for_epoch(None).await; test_cluster.wait_for_epoch(None).await; @@ -117,7 +119,7 @@ async fn test_apy() { .await .expect("call should succeed"); - assert_eq!(apys.epoch, 2); + assert_eq!(apys.epoch, 3); let validator_apy = apys .apys diff --git a/crates/iota-framework-snapshot/bytecode_snapshot/1/0x0000000000000000000000000000000000000000000000000000000000000002 b/crates/iota-framework-snapshot/bytecode_snapshot/1/0x0000000000000000000000000000000000000000000000000000000000000002 index 0bc77f04160..b0bbeaa7247 100644 Binary files a/crates/iota-framework-snapshot/bytecode_snapshot/1/0x0000000000000000000000000000000000000000000000000000000000000002 and b/crates/iota-framework-snapshot/bytecode_snapshot/1/0x0000000000000000000000000000000000000000000000000000000000000002 differ diff --git a/crates/iota-framework-snapshot/manifest.json b/crates/iota-framework-snapshot/manifest.json index a1d2ede02b0..2c69b9bbdf6 100644 --- a/crates/iota-framework-snapshot/manifest.json +++ b/crates/iota-framework-snapshot/manifest.json @@ -1,6 +1,6 @@ { "1": { - "git_revision": "f1f6c498eb44", + "git_revision": "cfa0f7babbc4", "package_ids": [ "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000002", diff --git a/crates/iota-framework/packages/iota-framework/sources/coin_manager.move b/crates/iota-framework/packages/iota-framework/sources/coin_manager.move index faf184e92c8..6b8ce449c39 100644 --- a/crates/iota-framework/packages/iota-framework/sources/coin_manager.move +++ b/crates/iota-framework/packages/iota-framework/sources/coin_manager.move @@ -17,20 +17,23 @@ module iota::coin_manager { use iota::balance::{Balance, Supply}; use iota::dynamic_field as df; - /// The error returned when the maximum supply reached. + /// The error returned when the maximum supply reached const EMaximumSupplyReached: u64 = 0; /// The error returned if a attempt is made to change the maximum supply after setting it const EMaximumSupplyAlreadySet: u64 = 1; + /// The error returned if a attempt is made to change the maximum supply that is lower than the total supply + const EMaximumSupplyLowerThanTotalSupply: u64 = 2; + /// The error returned if additional metadata already exists and you try to overwrite - const EAdditionalMetadataAlreadyExists: u64 = 2; + const EAdditionalMetadataAlreadyExists: u64 = 3; /// The error returned if you try to edit nonexisting additional metadata - const EAdditionalMetadataDoesNotExist: u64 = 3; + const EAdditionalMetadataDoesNotExist: u64 = 4; /// The error returned if you try to edit immutable metadata - const ENoMutableMetadata: u64 = 4; + const ENoMutableMetadata: u64 = 5; /// Holds all related objects to a Coin in a convenient shared function public struct CoinManager<phantom T> has key, store { @@ -227,6 +230,7 @@ module iota::coin_manager { maximum_supply: u64 ) { assert!(option::is_none(&manager.maximum_supply), EMaximumSupplyAlreadySet); + assert!(total_supply(manager) <= maximum_supply, EMaximumSupplyLowerThanTotalSupply); option::fill(&mut manager.maximum_supply, maximum_supply); } diff --git a/crates/iota-framework/packages/iota-framework/tests/coin_manager_tests.move b/crates/iota-framework/packages/iota-framework/tests/coin_manager_tests.move index 7ac77be38c6..320c347a57c 100644 --- a/crates/iota-framework/packages/iota-framework/tests/coin_manager_tests.move +++ b/crates/iota-framework/packages/iota-framework/tests/coin_manager_tests.move @@ -34,19 +34,18 @@ module iota::coin_manager_tests { scenario.ctx(), ); - let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); - assert!(wrapper.decimals() == 0, 0); + assert!(wrapper.decimals() == 0); // We should start out with a Supply of 0. - assert!(wrapper.total_supply() == 0, 0); + assert!(wrapper.total_supply() == 0); // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); // We should now have a Supply of 10. - assert!(wrapper.total_supply() == 10, 0); + assert!(wrapper.total_supply() == 10); // No maximum supply set, so we can do this again! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); @@ -75,16 +74,16 @@ module iota::coin_manager_tests { scenario.ctx(), ); - assert!(wrapper.decimals() == 0, 0); + assert!(wrapper.decimals() == 0); // We should start out with a Supply of 0. - assert!(wrapper.total_supply() == 0, 0); + assert!(wrapper.total_supply() == 0); // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); // We should now have a Supply of 10. - assert!(wrapper.total_supply() == 10, 0); + assert!(wrapper.total_supply() == 10); // No maximum supply set, so we can do this again! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); @@ -98,7 +97,7 @@ module iota::coin_manager_tests { #[test] #[expected_failure(abort_code = coin_manager::EMaximumSupplyReached)] - fun test_max_supply() { + fun test_max_supply_higher_that_total() { let sender = @0xA; let mut scenario = test_scenario::begin(sender); let witness = COIN_MANAGER_TESTS{}; @@ -114,24 +113,106 @@ module iota::coin_manager_tests { scenario.ctx(), ); - let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); // We should start out with a Supply of 0. - assert!(wrapper.total_supply() == 0, 0); + assert!(wrapper.total_supply() == 0); - // Enforce a Max Supply + // Enforce a Max Supply. cmcap.enforce_maximum_supply(&mut wrapper, 10); // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); // We should now have a Supply of 10. - assert!(wrapper.total_supply() == 10, 0); + assert!(wrapper.total_supply() == 10); + + // This should fail. + cmcap.mint_and_transfer(&mut wrapper, 1, sender, scenario.ctx()); + + transfer::public_transfer(cmcap, scenario.ctx().sender()); + metacap.renounce_metadata_ownership(&mut wrapper); + + transfer::public_share_object(wrapper); + + scenario.end(); + } + + #[test] + #[expected_failure(abort_code = coin_manager::EMaximumSupplyReached)] + fun test_max_supply_equals_total() { + let sender = @0xA; + let mut scenario = test_scenario::begin(sender); + let witness = COIN_MANAGER_TESTS{}; + + // Create a `Coin`. + let (cap, meta) = coin::create_currency( + witness, + 0, + b"TEST", + b"TEST", + b"TEST", + option::none(), + scenario.ctx(), + ); + + let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); + + // We should start out with a Supply of 0. + assert!(wrapper.total_supply() == 0); + + // Mint some coin! + cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); + + // We should now have a Supply of 10. + assert!(wrapper.total_supply() == 10); + + // Enforce a Max Supply. + cmcap.enforce_maximum_supply(&mut wrapper, 10); - // This should fail + // This should fail. + cmcap.mint_and_transfer(&mut wrapper, 1, sender, scenario.ctx()); + + transfer::public_transfer(cmcap, scenario.ctx().sender()); + metacap.renounce_metadata_ownership(&mut wrapper); + + transfer::public_share_object(wrapper); + + scenario.end(); + } + + #[test] + #[expected_failure(abort_code = coin_manager::EMaximumSupplyLowerThanTotalSupply)] + fun test_max_supply_lower_than_total() { + let sender = @0xA; + let mut scenario = test_scenario::begin(sender); + let witness = COIN_MANAGER_TESTS{}; + + // Create a `Coin`. + let (cap, meta) = coin::create_currency( + witness, + 0, + b"TEST", + b"TEST", + b"TEST", + option::none(), + scenario.ctx(), + ); + + let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); + + // We should start out with a Supply of 0. + assert!(wrapper.total_supply() == 0); + + // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); + + // We should now have a Supply of 10. + assert!(wrapper.total_supply() == 10); + // Update the maximum supply to be lower than the total supply, this should not be allowed. + cmcap.enforce_maximum_supply(&mut wrapper, 9); + transfer::public_transfer(cmcap, scenario.ctx().sender()); metacap.renounce_metadata_ownership(&mut wrapper); @@ -158,13 +239,12 @@ module iota::coin_manager_tests { scenario.ctx(), ); - let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); - // Enforce a Max Supply + // Enforce a Max Supply. cmcap.enforce_maximum_supply(&mut wrapper, 10); - // Update it, this should not be allowed + // Update it, this should not be allowed. cmcap.enforce_maximum_supply(&mut wrapper, 20); transfer::public_transfer(cmcap, scenario.ctx().sender()); @@ -192,41 +272,40 @@ module iota::coin_manager_tests { scenario.ctx(), ); - let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); // We should start out with a Supply of 0. - assert!(wrapper.total_supply() == 0, 0); + assert!(wrapper.total_supply() == 0); - // Enforce a Max Supply + // Enforce a Max Supply. cmcap.enforce_maximum_supply(&mut wrapper, 10); // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 5, sender, scenario.ctx()); // We should now have a Supply of 5. - assert!(wrapper.total_supply() == 5, 0); + assert!(wrapper.total_supply() == 5); // We should now have a Max Supply of 10. - assert!(wrapper.maximum_supply() == 10, 0); + assert!(wrapper.maximum_supply() == 10); - // The coin is not immutable right now, we still have a `CoinManagerCap` - assert!(!wrapper.supply_is_immutable(), 1); - assert!(!wrapper.metadata_is_immutable(), 1); + // The coin is not immutable right now, we still have a `CoinManagerCap`. + assert!(!wrapper.supply_is_immutable()); + assert!(!wrapper.metadata_is_immutable()); // Lets turn it immutable! cmcap.renounce_treasury_ownership(&mut wrapper); - // The coin should be immutable right now - assert!(wrapper.supply_is_immutable(), 2); - // But metadata should still be mutable - assert!(!wrapper.metadata_is_immutable(), 1); + // The coin should be immutable right now. + assert!(wrapper.supply_is_immutable()); + // But metadata should still be mutable. + assert!(!wrapper.metadata_is_immutable()); // We should now have a Max Supply of 5, due to renouncing of ownership. - assert!(wrapper.maximum_supply() == 5, 3); + assert!(wrapper.maximum_supply() == 5); metacap.renounce_metadata_ownership(&mut wrapper); - assert!(wrapper.metadata_is_immutable(), 1); + assert!(wrapper.metadata_is_immutable()); transfer::public_share_object(wrapper); scenario.end(); @@ -249,7 +328,6 @@ module iota::coin_manager_tests { scenario.ctx(), ); - let (cmcap, metacap, mut wrapper) = coin_manager::new(cap, meta, scenario.ctx()); let bonus = BonusMetadata { @@ -259,7 +337,7 @@ module iota::coin_manager_tests { metacap.add_additional_metadata(&mut wrapper, bonus); - assert!(!wrapper.additional_metadata<COIN_MANAGER_TESTS, BonusMetadata>().is_amazing, 0); + assert!(!wrapper.additional_metadata<COIN_MANAGER_TESTS, BonusMetadata>().is_amazing); let bonus2 = BonusMetadata { website: url::new_unsafe(string(b"https://iota.org")), @@ -270,7 +348,7 @@ module iota::coin_manager_tests { let BonusMetadata { website: _, is_amazing: _ } = oldmeta; - assert!(wrapper.additional_metadata<COIN_MANAGER_TESTS, BonusMetadata>().is_amazing, 0); + assert!(wrapper.additional_metadata<COIN_MANAGER_TESTS, BonusMetadata>().is_amazing); cmcap.renounce_treasury_ownership(&mut wrapper); metacap.renounce_metadata_ownership(&mut wrapper); @@ -296,19 +374,18 @@ module iota::coin_manager_tests { scenario.ctx(), ); - transfer::public_freeze_object(meta); test_scenario::next_tx(&mut scenario, sender); let immeta = test_scenario::take_immutable<CoinMetadata<COIN_MANAGER_TESTS>>(&scenario); let (cmcap, mut wrapper) = coin_manager::new_with_immutable_metadata(cap, &immeta, scenario.ctx()); - assert!(wrapper.metadata_is_immutable(), 0); + assert!(wrapper.metadata_is_immutable()); - assert!(wrapper.decimals() == 0, 0); + assert!(wrapper.decimals() == 0); // We should start out with a Supply of 0. - assert!(wrapper.total_supply() == 0, 0); + assert!(wrapper.total_supply() == 0); // Mint some coin! cmcap.mint_and_transfer(&mut wrapper, 10, sender, scenario.ctx()); @@ -319,4 +396,4 @@ module iota::coin_manager_tests { scenario.end(); } -} \ No newline at end of file +} diff --git a/crates/iota-framework/packages_compiled/iota-framework b/crates/iota-framework/packages_compiled/iota-framework index 5ad34b2f135..4747e245c42 100644 Binary files a/crates/iota-framework/packages_compiled/iota-framework and b/crates/iota-framework/packages_compiled/iota-framework differ diff --git a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp index cd8110551b4..23e7a64730c 100644 --- a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp +++ b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp @@ -6,20 +6,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 }, "last": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 } }, "first": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 }, "last": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 } } @@ -39,20 +39,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 }, "last": { - "digest": "3GN2xF2YRGs1wwh1BuaWexjsfYjqcRrxut4hCmKudWdq", + "digest": "6SSpR1JWujKRTEB844us1vSSxjpD3RADCZ6HujXWx9a1", "sequenceNumber": 2 } }, "first": { - "digest": "DbuejNSgvHrPUDyucKV46j9kdT8f5VV78PWjLzV41yVw", + "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", "sequenceNumber": 0 }, "last": { - "digest": "3GN2xF2YRGs1wwh1BuaWexjsfYjqcRrxut4hCmKudWdq", + "digest": "6SSpR1JWujKRTEB844us1vSSxjpD3RADCZ6HujXWx9a1", "sequenceNumber": 2 } } diff --git a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp index 21c50310dbf..1cc6231fd6b 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp @@ -55,15 +55,15 @@ Response: { { "name": { "type": { - "repr": "bool" + "repr": "u64" }, "data": { - "Bool": false + "Number": "0" }, - "bcs": "AA==" + "bcs": "AAAAAAAAAAA=" }, "value": { - "__typename": "MoveValue" + "__typename": "MoveObject" } }, { @@ -83,15 +83,15 @@ Response: { { "name": { "type": { - "repr": "u64" + "repr": "bool" }, "data": { - "Number": "0" + "Bool": false }, - "bcs": "AAAAAAAAAAA=" + "bcs": "AA==" }, "value": { - "__typename": "MoveObject" + "__typename": "MoveValue" } } ] @@ -135,15 +135,15 @@ Response: { { "name": { "type": { - "repr": "bool" + "repr": "u64" }, "data": { - "Bool": false + "Number": "0" }, - "bcs": "AA==" + "bcs": "AAAAAAAAAAA=" }, "value": { - "__typename": "MoveValue" + "__typename": "MoveObject" } }, { @@ -163,15 +163,15 @@ Response: { { "name": { "type": { - "repr": "u64" + "repr": "bool" }, "data": { - "Number": "0" + "Bool": false }, - "bcs": "AAAAAAAAAAA=" + "bcs": "AA==" }, "value": { - "__typename": "MoveObject" + "__typename": "MoveValue" } } ] @@ -208,19 +208,15 @@ Response: { { "name": { "type": { - "repr": "bool" + "repr": "u64" }, "data": { - "Bool": false + "Number": "0" }, - "bcs": "AA==" + "bcs": "AAAAAAAAAAA=" }, "value": { - "bcs": "AgAAAAAAAAA=", - "data": { - "Number": "2" - }, - "__typename": "MoveValue" + "__typename": "MoveObject" } }, { @@ -244,15 +240,19 @@ Response: { { "name": { "type": { - "repr": "u64" + "repr": "bool" }, "data": { - "Number": "0" + "Bool": false }, - "bcs": "AAAAAAAAAAA=" + "bcs": "AA==" }, "value": { - "__typename": "MoveObject" + "bcs": "AgAAAAAAAAA=", + "data": { + "Number": "2" + }, + "__typename": "MoveValue" } } ] diff --git a/crates/iota-graphql-e2e-tests/tests/call/simple.exp b/crates/iota-graphql-e2e-tests/tests/call/simple.exp index 1f64469d77c..da25f2c885e 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/simple.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/simple.exp @@ -25,14 +25,18 @@ task 4, line 32: //# view-object 0,0 Owner: Account Address ( validator_0 ) Version: 1 -Contents: iota::coin::Coin<iota::iota::IOTA> { +Contents: iota_system::staking_pool::StakedIota { id: iota::object::UID { id: iota::object::ID { bytes: fake(0,0), }, }, - balance: iota::balance::Balance<iota::iota::IOTA> { - value: 300000000000000u64, + pool_id: iota::object::ID { + bytes: _, + }, + stake_activation_epoch: 0u64, + principal: iota::balance::Balance<iota::iota::IOTA> { + value: 1500000000000000u64, }, } @@ -77,7 +81,7 @@ Epoch advanced: 5 task 10, line 44: //# view-checkpoint -CheckpointSummary { epoch: 5, seq: 10, content_digest: 4ZuQEfEAd6oU7FYh83WHHE7DYdPeZVndW5q6ZMx45KLX, +CheckpointSummary { epoch: 5, seq: 10, content_digest: TQRzKjmFFVTRsVoxCEk4TEatECab3mejg97UWAXNncR, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 11, lines 46-51: @@ -155,8 +159,8 @@ Response: { "edges": [ { "node": { - "address": "0x5a14fc3eeb9ef468b4bba415d7817c339b1f9ea7f3d59f3f48c3eefe31322856", - "digest": "44MBwuUjBiBgkR19RgE9AmznyHtwiW8CWKtvXWf4RwRd", + "address": "0x247f507fc5da9cd8bda6a1f78757040f0c3b5a739ff42a5442e9d444cf905b24", + "digest": "F7V5y4PDcEqHxvLbWVXgNWhHNyLpnhSzUSPT6UgXrCpf", "owner": { "__typename": "AddressOwner" } @@ -182,8 +186,8 @@ Response: { "edges": [ { "node": { - "address": "0x5a14fc3eeb9ef468b4bba415d7817c339b1f9ea7f3d59f3f48c3eefe31322856", - "digest": "44MBwuUjBiBgkR19RgE9AmznyHtwiW8CWKtvXWf4RwRd", + "address": "0x247f507fc5da9cd8bda6a1f78757040f0c3b5a739ff42a5442e9d444cf905b24", + "digest": "F7V5y4PDcEqHxvLbWVXgNWhHNyLpnhSzUSPT6UgXrCpf", "owner": { "__typename": "AddressOwner" } @@ -198,7 +202,7 @@ Response: { { "node": { "address": "0x26bf0f03edd09bb3f862e13cec014d17c26dd739d2563d9c704aa8d206301df2", - "digest": "4H2vETP8tgjQtjRPjrWQ8vaAh2vTzCnCaLrrS5AdsxYW", + "digest": "5koFoxanUQbepReBDf2VjSpe8PkX45L7qAK5Qeb3RcJi", "owner": { "__typename": "AddressOwner" } @@ -207,7 +211,7 @@ Response: { { "node": { "address": "0x3442446f02377d1025b211e51564e4f1c9a46845ccad733beeb06180d3f66c31", - "digest": "D8THNropCzbESMMWVCGG2cZUXgncpCXeavpPFtKZrbEh", + "digest": "DAK2yf5GQdXvY8iYQbqKt738y8LRx7Qt1cnQQ9hyhqXN", "owner": { "__typename": "AddressOwner" } @@ -216,7 +220,7 @@ Response: { { "node": { "address": "0x3c88cad5799a8da0467b8456a7429a97e7c141cfcf25f02faf51aa8cb4840461", - "digest": "D9pBCyFBxMdgt4vFo3hiikbxZtdxUHKSBx6hZC9cgjis", + "digest": "BUEYCJm1mj67k7xmdRar2vc6tWG72DfDWMeMUwYXymXA", "owner": { "__typename": "AddressOwner" } @@ -224,8 +228,8 @@ Response: { }, { "node": { - "address": "0x847c914d647e7387d7cea4db5ad8fefeffe66773635804a991dfd4385fab6a97", - "digest": "DUFZgANfmmUyusdii2XCjReFg3ykzwqBvfrDvpoVfHVR", + "address": "0x5305698bff3e2940fe5c8853ab66a3ca81ae7f4178a5cd7f967820bcb5abaf42", + "digest": "2ppor4u2bZTY47XEcSH4m1BxeqejC6PssibD4H4ZstKW", "owner": { "__typename": "AddressOwner" } @@ -233,8 +237,8 @@ Response: { }, { "node": { - "address": "0xa0da8cea0e7a9e94a4b096c721ace35248af587e73adb78967a73dd8cb094565", - "digest": "BKx9UC6pSCazyJGJ35WKqEvZXZx3kajuNAnawW4rCNLP", + "address": "0x684bcf65082edf9f539aa0b576f2834bf9fafcf3f4896e46ae65bfd5de5529d3", + "digest": "D5mgXs5emP2X9yW1y1zMu2fQEPaCzzatsXDfQLxFiAB", "owner": { "__typename": "AddressOwner" } @@ -242,8 +246,8 @@ Response: { }, { "node": { - "address": "0xa79cc544021a721176cdc4497728ec35a5311b8ff0aa293a5d29c0d32cb56056", - "digest": "ANJa65mKP7tZx6GoA82GzBuandC7oTV4a9fk9n8wPbov", + "address": "0x847c914d647e7387d7cea4db5ad8fefeffe66773635804a991dfd4385fab6a97", + "digest": "DhHp14dNZzUkhxtgwHiQsbVnJZUYfrnVy8r7BsSjbgjQ", "owner": { "__typename": "AddressOwner" } @@ -251,8 +255,8 @@ Response: { }, { "node": { - "address": "0xac9c2e11aebecd35b4cb15802ca6ad5e64d320204149187ba646a16d07a4934d", - "digest": "RrVubtgNdy7wNADnkTDbTpRgRpzYdnjQtLfn1GjUkL8", + "address": "0xa2b1d6b160c3d8a4f59a8c7483216236e83b83a2d32f73555113ab3f5074ef84", + "digest": "83L2WDCbwMMyxBdrPV8qizC3uExV4yxpnYbHNeMwRtdz", "owner": { "__typename": "AddressOwner" } @@ -260,8 +264,8 @@ Response: { }, { "node": { - "address": "0xb21c0b03871456040643740e238d03bde38de240d7b17055f4670777a19f07b8", - "digest": "6q7rM2bckwW5W8QiM3T5VWCtEf2MjCX7G51UiwgHCDnL", + "address": "0xa79cc544021a721176cdc4497728ec35a5311b8ff0aa293a5d29c0d32cb56056", + "digest": "Cjed4do2xZ9e6XEF9HUK5E4YriQcU582E6NFG41vYVy6", "owner": { "__typename": "AddressOwner" } @@ -269,8 +273,8 @@ Response: { }, { "node": { - "address": "0xbf1922ccfb654506f4104ce832ff2e7887af43de81c01bd22d28c2ff4eae4d44", - "digest": "9YrG9BE2ekkibLeL2x1vGaABj7ZqdrdNArqFaR1yWBwb", + "address": "0xac9c2e11aebecd35b4cb15802ca6ad5e64d320204149187ba646a16d07a4934d", + "digest": "8WbutPsiEcCce4vLSP7HryffvbcwSMXCYcK4tkmTj1Hp", "owner": { "__typename": "AddressOwner" } @@ -278,8 +282,8 @@ Response: { }, { "node": { - "address": "0xe0036db16e72b25a175f7cf03c360669e80e1d44c2e4fdeab59eced4d3d8650c", - "digest": "Fbm95u1WFstG2dhEuK6sBnhWmYDtZMgc8LhUihh7y83w", + "address": "0xb21c0b03871456040643740e238d03bde38de240d7b17055f4670777a19f07b8", + "digest": "6Wi2HWf7Q5AR2SMUAg53WKD2zop7AqJVww2c3CGMQeyt", "owner": { "__typename": "AddressOwner" } @@ -287,8 +291,8 @@ Response: { }, { "node": { - "address": "0xebf199fc588a2ab72281d94e0cbd957f87b75c056b677ada8341962c22abbed9", - "digest": "ApypQoSQXYpfee5Ji6YEnBJxWDts2Pmo1anNwviVTPaL", + "address": "0xc06489dc5e2381a39a428d386129f672f4b02e61114dd5549be7ac7a739dfb55", + "digest": "DqdbLWKk5JTcmGGDDD21sJ2cu7jD7312BeNPipx4tReq", "owner": { "__typename": "AddressOwner" } @@ -296,8 +300,8 @@ Response: { }, { "node": { - "address": "0xfadf3d2a466a0f7279368bfdc9b19bf093ec52b6abd5ac51df4ffabbaa48e2e2", - "digest": "ELBFcj1EbKJ9tUyoggRHXDUuvBa7e6HmboxkxXD4d4Rv", + "address": "0xf09c93336049b67160b0db30508bc1294d990b9f322387595c82ffee2108532c", + "digest": "EfGNzYUAooTTimKkTiQ8vQbkvzczQWtfXBHFFnCkhwtp", "owner": { "__typename": "AddressOwner" } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp index 0c0837ee005..c9bc932542f 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp @@ -80,7 +80,7 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 3, "totalBalance": "700" @@ -103,7 +103,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "400" + "totalBalance": "500" }, "allBalances": { "nodes": [ @@ -116,10 +116,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 2, - "totalBalance": "400" + "totalBalance": "500" } ] } @@ -139,7 +139,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "200" + "totalBalance": "400" }, "allBalances": { "nodes": [ @@ -152,10 +152,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 1, - "totalBalance": "200" + "totalBalance": "400" } ] } @@ -196,7 +196,7 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 3, "totalBalance": "700" @@ -219,7 +219,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "400" + "totalBalance": "500" }, "allBalances": { "nodes": [ @@ -232,10 +232,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 2, - "totalBalance": "400" + "totalBalance": "500" } ] } @@ -255,7 +255,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "200" + "totalBalance": "400" }, "allBalances": { "nodes": [ @@ -268,10 +268,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 1, - "totalBalance": "200" + "totalBalance": "400" } ] } @@ -334,7 +334,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "400" + "totalBalance": "500" }, "allBalances": { "nodes": [ @@ -347,10 +347,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 2, - "totalBalance": "400" + "totalBalance": "500" } ] } @@ -370,7 +370,7 @@ Response: { { "sender": { "fakeCoinBalance": { - "totalBalance": "200" + "totalBalance": "400" }, "allBalances": { "nodes": [ @@ -383,10 +383,10 @@ Response: { }, { "coinType": { - "repr": "0x8a64e2320cb13fc7276c85b7680997e0fb40820e8276a753b076d5d1d0e208ff::fake::FAKE" + "repr": "0x2faff717edb9e7b77d77e57e250c119631bb98126becf9755fa4776cd0640874::fake::FAKE" }, "coinObjectCount": 1, - "totalBalance": "200" + "totalBalance": "400" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp index 1866d5b26f5..88a01ee9564 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp @@ -94,12 +94,12 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud", + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -109,12 +109,12 @@ Response: { { "cursor": "eyJjIjozLCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "Ay1h3NAkKnrkUif97h8ra2cf8ZyXzQvxUrJp7eaN89cV", + "digest": "ESxws3HtgcjvKRyefUr7JAxsFLZWWUfDDAnroqeny4G5", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -124,12 +124,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP", + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -139,12 +139,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo1LCJpIjpmYWxzZX0", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV", + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -161,12 +161,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "CvhQVJ7numDYf6yZL4nWtw6Xh5iGYGEyVo23eYzQrBg1", + "digest": "4dqvaY8wktxVDv685kMHE2tYzD3eA2d8CgcL1cnd5GEp", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -176,12 +176,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo3LCJpIjpmYWxzZX0", "node": { - "digest": "DQHEeQgLHCrvGvvMCwSf6nkPJSHPau76ubpxmh1dQpE9", + "digest": "A8y4xLrF2oDM2rmozRsScWd4AmTzkKetdqVgEWsY7ykF", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -191,12 +191,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk", + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -213,12 +213,12 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo5LCJpIjpmYWxzZX0", "node": { - "digest": "BHybRgj8Z9zf6yK7QHay4Y91ntSY7Tv4tbPFKNrdfUpd", + "digest": "5JeY5Q4Cj4teQ9SiuZUNvaMs1KNHhZ5z67n8skbH9gN2", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } @@ -228,12 +228,12 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "5XuV7BK4xMoHsgPyXjWiA4XTcAozfauKW1sdAZ7V9yfT", + "digest": "FSAPnPoBSZi2zRXBYAnHGn2hp5q1mJdSbXwscYTH4xuD", "sender": { "objects": { "edges": [ { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuAwAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0AwAAAAAAAAA=" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp index c87443d566b..f7400762b98 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp @@ -33,7 +33,7 @@ Response: { "queryCoinsAtLatest": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AgAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAgAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -41,39 +41,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AgAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAgAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAgAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -85,16 +85,16 @@ Response: { }, "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAgAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAgAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -102,39 +102,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AgAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAgAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAgAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -146,16 +146,16 @@ Response: { }, "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAgAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAgAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -163,39 +163,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AgAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAgAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAgAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -207,9 +207,9 @@ Response: { }, "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -221,39 +221,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AgAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAgAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAgAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAgAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -272,7 +272,7 @@ Response: { "queryCoinsAtChkpt1": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -280,39 +280,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAQAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -324,16 +324,16 @@ Response: { }, "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -341,39 +341,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAQAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -385,9 +385,9 @@ Response: { }, "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } @@ -399,26 +399,26 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } @@ -453,7 +453,7 @@ Response: { "queryCoins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AwAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAwAAAAAAAAA=", "node": { "owner": { "owner": { @@ -461,13 +461,13 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AwAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } @@ -479,16 +479,16 @@ Response: { }, "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAwAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAwAAAAAAAAA=", "node": { "owner": { "owner": { @@ -496,26 +496,26 @@ Response: { "coins": { "edges": [ { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAwAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAwAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -527,16 +527,16 @@ Response: { }, "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAwAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAwAAAAAAAAA=", "node": { "owner": { "owner": { @@ -544,26 +544,26 @@ Response: { "coins": { "edges": [ { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAwAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAwAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -575,9 +575,9 @@ Response: { }, "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -589,13 +589,13 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AwAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100100" + "value": "100300" } } } @@ -608,26 +608,26 @@ Response: { "coins": { "edges": [ { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAwAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAwAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAwAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -658,7 +658,7 @@ Response: { "queryCoinsAtChkpt1BeforeSnapshotCatchup": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -666,39 +666,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAQAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -710,16 +710,16 @@ Response: { }, "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "consistentStateForEachCoin": { "owner": { @@ -727,39 +727,39 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } } }, { - "cursor": "IO9Q9XbE6+db2l9L0JjhNzautfBsOISq1c5cVBEtZWshAQAAAAAAAAA=", + "cursor": "IOBi2idPgbJb9O0FKCkiP0mcuuEWJYclwTQVRTFYAoMfAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xef50f576c4ebe75bda5f4bd098e13736aeb5f06c3884aad5ce5c54112d656b21", + "id": "0xe062da274f81b25bf4ed052829223f499cbae116258725c1341545315802831f", "balance": { - "value": "200" + "value": "100" } } } @@ -771,9 +771,9 @@ Response: { }, "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } @@ -785,26 +785,26 @@ Response: { "coins": { "edges": [ { - "cursor": "IEoxRTEINy8rM4k10qaiK4DBOnvAFlH2NqNlUbiEl5m4AQAAAAAAAAA=", + "cursor": "IB6OG7YeYciwhPMnMO5OpEN/rSM7UXvPjLncOdRsBRbvAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0x4a31453108372f2b338935d2a6a22b80c13a7bc01651f636a36551b8849799b8", + "id": "0x1e8e1bb61e61c8b084f32730ee4ea4437fad233b517bcf8cb9dc39d46c0516ef", "balance": { - "value": "100" + "value": "300" } } } } }, { - "cursor": "IM83Q8NQ6HuwSEYJ3Loz6KZTddlepYt8zRg6fa44RlHIAQAAAAAAAAA=", + "cursor": "ICto0KUswCdXVt9gvx1b9+kexoR/QnF7k2Amb7OShbyYAQAAAAAAAAA=", "node": { "contents": { "json": { - "id": "0xcf3743c350e87bb0484609dcba33e8a65375d95ea58b7ccd183a7dae384651c8", + "id": "0x2b68d0a52cc0275756df60bf1d5bf7e91ec6847f42717b9360266fb39285bc98", "balance": { - "value": "300" + "value": "200" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp index 7114a8def6f..46eff675eb9 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp @@ -90,7 +90,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IAuAWD5S+a9NiTE0NLMt51nZPdB/jGuIJU3KdhgC6Df1AQAAAAAAAAA=", + "cursor": "IFGC5RPg5c2yKNvnR+V3w/pRTs9aSHxm/Pkth4bjkOjdAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==" @@ -101,7 +101,7 @@ Response: { } }, { - "cursor": "IIBWfNdnUHotfxzw7x0/GTs+i0n+uvDH4t4e7dc++v/aAQAAAAAAAAA=", + "cursor": "IL3qZMAyj4gZlGxCci5mYU3JwlVbQSTzBzvDZWRnNdD2AQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNQ==" @@ -112,7 +112,7 @@ Response: { } }, { - "cursor": "ILN4GZtK9jzjdM6iJqs8jW2H9iA3quae7IQ/Uj9YGuI8AQAAAAAAAAA=", + "cursor": "INbM45XnJF+9iPgLV+WNfTBMo8O50O9mYJ5fZfNQvEwbAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNg==" @@ -139,7 +139,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IAuAWD5S+a9NiTE0NLMt51nZPdB/jGuIJU3KdhgC6Df1AQAAAAAAAAA=", + "cursor": "IFGC5RPg5c2yKNvnR+V3w/pRTs9aSHxm/Pkth4bjkOjdAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==" @@ -150,7 +150,7 @@ Response: { } }, { - "cursor": "IIBWfNdnUHotfxzw7x0/GTs+i0n+uvDH4t4e7dc++v/aAQAAAAAAAAA=", + "cursor": "IL3qZMAyj4gZlGxCci5mYU3JwlVbQSTzBzvDZWRnNdD2AQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNQ==" @@ -161,7 +161,7 @@ Response: { } }, { - "cursor": "ILN4GZtK9jzjdM6iJqs8jW2H9iA3quae7IQ/Uj9YGuI8AQAAAAAAAAA=", + "cursor": "INbM45XnJF+9iPgLV+WNfTBMo8O50O9mYJ5fZfNQvEwbAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNg==" @@ -188,62 +188,62 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IAawhw/3qY0YnjRH/vW7OZwHigwSZY1HAwYhFywolc2uAQAAAAAAAAA=", + "cursor": "IFGC5RPg5c2yKNvnR+V3w/pRTs9aSHxm/Pkth4bjkOjdAQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==" + "bcs": "A2RmNA==" }, "value": { - "json": "df2" + "json": "df4" } } }, { - "cursor": "IAuAWD5S+a9NiTE0NLMt51nZPdB/jGuIJU3KdhgC6Df1AQAAAAAAAAA=", + "cursor": "IIAc8vGlX6biZCSiyKNKtdnCMWpxjKIUchoNo8hgEnNdAQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNA==" + "bcs": "A2RmMw==" }, "value": { - "json": "df4" + "json": "df3" } } }, { - "cursor": "IDHZEQS3ja51p1OhSBXkHM6d7Ft57mgIl9i3eM4MtocHAQAAAAAAAAA=", + "cursor": "IISa0drNQFm7LiFwSeIurkUaKhl9+yeKTZrpiwCPntP+AQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==" + "bcs": "A2RmMg==" }, "value": { - "json": "df3" + "json": "df2" } } }, { - "cursor": "IIBWfNdnUHotfxzw7x0/GTs+i0n+uvDH4t4e7dc++v/aAQAAAAAAAAA=", + "cursor": "IKRThQx9CFKXHVIRmYqY080n+S4nlILwGyJg6x6kMF4qAQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNQ==" + "bcs": "A2RmMQ==" }, "value": { - "json": "df5" + "json": "df1" } } }, { - "cursor": "IJBs4l7PDwA4jl9ZLSOR1ky7UurAGyfT5F0cxHGrXQwTAQAAAAAAAAA=", + "cursor": "IL3qZMAyj4gZlGxCci5mYU3JwlVbQSTzBzvDZWRnNdD2AQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==" + "bcs": "A2RmNQ==" }, "value": { - "json": "df1" + "json": "df5" } } }, { - "cursor": "ILN4GZtK9jzjdM6iJqs8jW2H9iA3quae7IQ/Uj9YGuI8AQAAAAAAAAA=", + "cursor": "INbM45XnJF+9iPgLV+WNfTBMo8O50O9mYJ5fZfNQvEwbAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNg==" @@ -283,7 +283,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IAuAWD5S+a9NiTE0NLMt51nZPdB/jGuIJU3KdhgC6Df1AQAAAAAAAAA=", + "cursor": "IFGC5RPg5c2yKNvnR+V3w/pRTs9aSHxm/Pkth4bjkOjdAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==" @@ -294,7 +294,7 @@ Response: { } }, { - "cursor": "IIBWfNdnUHotfxzw7x0/GTs+i0n+uvDH4t4e7dc++v/aAQAAAAAAAAA=", + "cursor": "IL3qZMAyj4gZlGxCci5mYU3JwlVbQSTzBzvDZWRnNdD2AQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNQ==" @@ -305,7 +305,7 @@ Response: { } }, { - "cursor": "ILN4GZtK9jzjdM6iJqs8jW2H9iA3quae7IQ/Uj9YGuI8AQAAAAAAAAA=", + "cursor": "INbM45XnJF+9iPgLV+WNfTBMo8O50O9mYJ5fZfNQvEwbAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNg==" diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp index bc16742db97..fbb25f800e5 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp @@ -41,7 +41,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBMFqUAoZ6AUW4xVrtEtpZlwuIkPQEZ7u9CNvTShr0LXAQAAAAAAAAA=", + "cursor": "IOQTp8RcctWxcPZKiprcDWwZ6pAuLErCiYyWqumvA0o3AQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -49,7 +49,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -65,7 +65,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -77,7 +77,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBMFqUAoZ6AUW4xVrtEtpZlwuIkPQEZ7u9CNvTShr0LXAQAAAAAAAAA=", + "cursor": "IOQTp8RcctWxcPZKiprcDWwZ6pAuLErCiYyWqumvA0o3AQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -85,7 +85,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -101,7 +101,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -117,7 +117,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -168,7 +168,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } @@ -222,7 +222,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xdff2655760856dfe5976bd26ba6be1ba48884517f9995b8725cfec67246162a3", + "id": "0xab08db34779d7b1d908ed61c2dc0bb7add2dcd3962ab857b523cb086f879c004", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp index 28ff4b62216..bc2d879ab0c 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp @@ -36,7 +36,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGhLXj7qJNgj1w1Fhf5TPul10b9WNMqiNoNUgcbzE1bEAQAAAAAAAAA=", + "cursor": "INIc2wS/CJpSjqoE3DksNnLveqfOxRdyaovKt5t/32O/AQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -44,7 +44,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -60,7 +60,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -71,7 +71,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGhLXj7qJNgj1w1Fhf5TPul10b9WNMqiNoNUgcbzE1bEAQAAAAAAAAA=", + "cursor": "INIc2wS/CJpSjqoE3DksNnLveqfOxRdyaovKt5t/32O/AQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -79,7 +79,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -95,7 +95,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -107,7 +107,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGhLXj7qJNgj1w1Fhf5TPul10b9WNMqiNoNUgcbzE1bEAQAAAAAAAAA=", + "cursor": "INIc2wS/CJpSjqoE3DksNnLveqfOxRdyaovKt5t/32O/AQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -115,7 +115,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -131,7 +131,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } @@ -184,7 +184,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x947c364d85ca002b1a7d8cf032d17c1c254281751c3faff8b3556435c85beac4", + "id": "0xc4a7a073d88452f0e18c11fd40a44f8ad73a68fe00106fe064d92276d20debe6", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp index d86ee4c05c5..2a29f107466 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp @@ -61,7 +61,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IC5by40oSQQFSyABq2JB+cvPp5S/YvrZnauBk4FhnNxAAQAAAAAAAAA=", + "cursor": "IDuDCtiHG/c2lwmHWJIPYH2GnOtrc0hsSKL73aavvcXMAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -69,7 +69,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -85,7 +85,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -96,7 +96,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IC5by40oSQQFSyABq2JB+cvPp5S/YvrZnauBk4FhnNxAAQAAAAAAAAA=", + "cursor": "IDuDCtiHG/c2lwmHWJIPYH2GnOtrc0hsSKL73aavvcXMAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -104,7 +104,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -120,7 +120,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -139,7 +139,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IC5by40oSQQFSyABq2JB+cvPp5S/YvrZnauBk4FhnNxAAQAAAAAAAAA=", + "cursor": "IDuDCtiHG/c2lwmHWJIPYH2GnOtrc0hsSKL73aavvcXMAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -147,7 +147,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -163,7 +163,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -182,7 +182,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IC5by40oSQQFSyABq2JB+cvPp5S/YvrZnauBk4FhnNxAAQAAAAAAAAA=", + "cursor": "IDuDCtiHG/c2lwmHWJIPYH2GnOtrc0hsSKL73aavvcXMAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -190,7 +190,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } @@ -206,7 +206,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x1414cd06e05dbeccaddc253f3f28e5840299b6f2d02936921e93618915a3164e", + "id": "0x69399ffd24228a843a2e940db109d36958fe7e64ed84209fe19726caa2d087a0", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp index ef77d20ff2f..ae07862cdf7 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp @@ -84,7 +84,7 @@ task 9, lines 103-165: Response: { "data": { "parent_version_2_no_dof": { - "address": "0xd857324c3aaf0300219e499f58d4db682f85bf29929cf4df2d0ac4d04e8564ae", + "address": "0x4a0096e938853ba9475835998e27b4094818ac082bce70833bf1ba0d8903c3ba", "dynamicFields": { "edges": [] } @@ -93,7 +93,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmAQAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OAQAAAAAAAAA=", "node": { "name": { "bcs": "pAEAAAAAAAA=", @@ -104,7 +104,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "count": "1" } } @@ -115,13 +115,13 @@ Response: { } }, "child_version_2_no_parent": { - "address": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "address": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "owner": {} }, "child_version_3_has_parent": { "owner": { "parent": { - "address": "0x3d8acf2c9f53c9957f0d8ca1c8a5dbd6b0ebb8bee349119886017ed9266c68e6" + "address": "0x17ddafb3f195515d66bd41badacade64cee7b1145bb75989df6d08fa92666ece" } } } @@ -173,63 +173,63 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBSfrXi9lZjyN9A1CH9v/2DfsppKQ1aOwnN0VjXo9sZkAgAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==", + "bcs": "pAEAAAAAAAA=", "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + "repr": "u64" } }, "value": { - "json": "df2" + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } } } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmAgAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAgAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmMg==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df2" } } }, { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AgAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMw==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df3" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAgAAAAAAAAA=", + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==", + "bcs": "A2RmMQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df3" + "json": "df1" } } } @@ -240,7 +240,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmAgAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OAgAAAAAAAAA=", "node": { "name": { "bcs": "pAEAAAAAAAA=", @@ -251,7 +251,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "count": "1" } } @@ -270,21 +270,21 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AgAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMg==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df2" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAgAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAgAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMw==", @@ -296,6 +296,20 @@ Response: { "json": "df3" } } + }, + { + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAgAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmMQ==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df1" + } + } } ] } @@ -328,7 +342,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "count": "1" } } @@ -347,7 +361,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "count": "2" } } @@ -412,63 +426,63 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBSfrXi9lZjyN9A1CH9v/2DfsppKQ1aOwnN0VjXo9sZkAwAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==", + "bcs": "pAEAAAAAAAA=", "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + "repr": "u64" } }, "value": { - "json": "df2" + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } } } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmAwAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAwAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmMg==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df2" } } }, { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AwAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMw==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df3" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAwAAAAAAAAA=", + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==", + "bcs": "A2RmMQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df3" + "json": "df1" } } } @@ -479,21 +493,21 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AgAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMg==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df2" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAgAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAgAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMw==", @@ -505,6 +519,20 @@ Response: { "json": "df3" } } + }, + { + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAgAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmMQ==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df1" + } + } } ] } @@ -513,7 +541,40 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBSfrXi9lZjyN9A1CH9v/2DfsppKQ1aOwnN0VjXo9sZkAwAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OAwAAAAAAAAA=", + "node": { + "name": { + "bcs": "pAEAAAAAAAA=", + "type": { + "repr": "u64" + } + }, + "value": { + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } + } + } + }, + { + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgAwAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmNA==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df4" + } + } + }, + { + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAwAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMg==", @@ -527,21 +588,21 @@ Response: { } }, { - "cursor": "IBwOIU5Pl0oBnGhMGYJDHVPodOHNRUlWAaVPfSr3Zxy7AwAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNQ==", + "bcs": "A2RmMw==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df5" + "json": "df3" } } }, { - "cursor": "IDqEKcEoRAJoWgdeCqJTMNHAJ6OKbroYxX7ujVpIbfnfAwAAAAAAAAA=", + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMAwAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNg==", @@ -555,26 +616,21 @@ Response: { } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmAwAAAAAAAAA=", + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVAwAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmNQ==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df5" } } }, { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AwAAAAAAAAA=", + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAwAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMQ==", @@ -586,9 +642,15 @@ Response: { "json": "df1" } } - }, + } + ] + } + }, + "parent_version_5_paginated_on_dof_consistent": { + "dynamicFields": { + "edges": [ { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXAwAAAAAAAAA=", + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgAwAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==", @@ -602,7 +664,21 @@ Response: { } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAwAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAwAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmMg==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df2" + } + } + }, + { + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAwAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMw==", @@ -614,52 +690,46 @@ Response: { "json": "df3" } } - } - ] - } - }, - "parent_version_5_paginated_on_dof_consistent": { - "dynamicFields": { - "edges": [ + }, { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AwAAAAAAAAA=", + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmNg==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df6" } } }, { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXAwAAAAAAAAA=", + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNA==", + "bcs": "A2RmNQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df4" + "json": "df5" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAwAAAAAAAAA=", + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==", + "bcs": "A2RmMQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df3" + "json": "df1" } } } @@ -713,63 +783,63 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBSfrXi9lZjyN9A1CH9v/2DfsppKQ1aOwnN0VjXo9sZkBAAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==", + "bcs": "pAEAAAAAAAA=", "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + "repr": "u64" } }, "value": { - "json": "df2" + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } } } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmBAAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaBAAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmMg==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df2" } } }, { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0BAAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMw==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df3" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIBAAAAAAAAAA=", + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==", + "bcs": "A2RmMQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df3" + "json": "df1" } } } @@ -780,21 +850,21 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IGsG93WeJ5vzD4eXXjB+JqygUNFWYkBY7Gb6vGnJq1A0AgAAAAAAAAA=", + "cursor": "IDZ28j+sQwZhzV/cSrPriBlxAkh5wl76TQMOUNUqrZCaAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMQ==", + "bcs": "A2RmMg==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df1" + "json": "df2" } } }, { - "cursor": "ILtJsyFyYxDGBWrsZEoNTb1MQBEAv02i5KI5wtglKZhIAgAAAAAAAAA=", + "cursor": "IFkuqsO1JqKH44TixH784NmNrfnTu1DYSxyRTgrYK+BJAgAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMw==", @@ -806,6 +876,20 @@ Response: { "json": "df3" } } + }, + { + "cursor": "IM6FMHtGVR1W/xfF8BprSOHr8gNskXvbh7d4g4ZZsYfcAgAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmMQ==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df1" + } + } } ] } @@ -814,63 +898,63 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBwOIU5Pl0oBnGhMGYJDHVPodOHNRUlWAaVPfSr3Zxy7BAAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNQ==", + "bcs": "pAEAAAAAAAA=", "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + "repr": "u64" } }, "value": { - "json": "df5" + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } } } }, { - "cursor": "IDqEKcEoRAJoWgdeCqJTMNHAJ6OKbroYxX7ujVpIbfnfBAAAAAAAAAA=", + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNg==", + "bcs": "A2RmNA==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df6" + "json": "df4" } } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmBAAAAAAAAAA=", + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMBAAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmNg==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df6" } } }, { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXBAAAAAAAAAA=", + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVBAAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNA==", + "bcs": "A2RmNQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df4" + "json": "df5" } } } @@ -881,7 +965,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXBAAAAAAAAAA=", + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgBAAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==", @@ -893,6 +977,34 @@ Response: { "json": "df4" } } + }, + { + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMBAAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmNg==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df6" + } + } + }, + { + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVBAAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmNQ==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df5" + } + } } ] } @@ -947,7 +1059,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmBwAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OBwAAAAAAAAA=", "node": { "name": { "bcs": "pAEAAAAAAAA=", @@ -958,7 +1070,7 @@ Response: { "value": { "contents": { "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", "count": "2" } } @@ -973,63 +1085,63 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IBwOIU5Pl0oBnGhMGYJDHVPodOHNRUlWAaVPfSr3Zxy7BwAAAAAAAAA=", + "cursor": "IBfdr7PxlVFdZr1ButrK3mTO57EUW7dZid9tCPqSZm7OBwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNQ==", + "bcs": "pAEAAAAAAAA=", "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + "repr": "u64" } }, "value": { - "json": "df5" + "contents": { + "json": { + "id": "0x1315d51750a777c447ae614ed7cdc081ce873fa6789fcd88eda8a6799349c650", + "count": "2" + } + } } } }, { - "cursor": "IDqEKcEoRAJoWgdeCqJTMNHAJ6OKbroYxX7ujVpIbfnfBwAAAAAAAAA=", + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgBwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNg==", + "bcs": "A2RmNA==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df6" + "json": "df4" } } }, { - "cursor": "ID2KzyyfU8mVfw2Mocil29aw67i+40kRmIYBftkmbGjmBwAAAAAAAAA=", + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMBwAAAAAAAAA=", "node": { "name": { - "bcs": "pAEAAAAAAAA=", + "bcs": "A2RmNg==", "type": { - "repr": "u64" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "contents": { - "json": { - "id": "0xb72102191dc66682b7bf98beb3ddb6b0540bdf525640c97463bb9000b154866b", - "count": "2" - } - } + "json": "df6" } } }, { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXBwAAAAAAAAA=", + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVBwAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmNA==", + "bcs": "A2RmNQ==", "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" } }, "value": { - "json": "df4" + "json": "df5" } } } @@ -1040,7 +1152,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKbnqIiar0EZzE0LPb4aZWQP+Y2mJDUikwdZQJ9BpAIXBAAAAAAAAAA=", + "cursor": "IDBfa5AI3U9gHrfe8/E6zTSGRDjoMaqeIE1qRKiKxgTgBAAAAAAAAAA=", "node": { "name": { "bcs": "A2RmNA==", @@ -1052,6 +1164,34 @@ Response: { "json": "df4" } } + }, + { + "cursor": "IHv4iWA3eeExUHg64tfuK+wSOxrmeEOkZqKqT+6smbvMBAAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmNg==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df6" + } + } + }, + { + "cursor": "IMl+yEpCbagWXQf06sXE5eEXuZkHAy1mHBs+qBG2BCrVBAAAAAAAAAA=", + "node": { + "name": { + "bcs": "A2RmNQ==", + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000001::string::String" + } + }, + "value": { + "json": "df5" + } + } } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp index b2ccf3a268e..98b3cef7ed7 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp @@ -58,11 +58,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7213d8b54baa510ebfbe8f8c80900a9645f88d5c3316950c3ff20c6c9c41b10e", + "address": "0x7a305b9b25129bd2d2fe1fb25387f9595ac60a7bee62519911fc23e33fadf8cc", "version": 5, "contents": { "json": { - "id": "0x7213d8b54baa510ebfbe8f8c80900a9645f88d5c3316950c3ff20c6c9c41b10e", + "id": "0x7a305b9b25129bd2d2fe1fb25387f9595ac60a7bee62519911fc23e33fadf8cc", "count": "0" } }, @@ -86,11 +86,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7213d8b54baa510ebfbe8f8c80900a9645f88d5c3316950c3ff20c6c9c41b10e", + "address": "0x7a305b9b25129bd2d2fe1fb25387f9595ac60a7bee62519911fc23e33fadf8cc", "version": 5, "contents": { "json": { - "id": "0x7213d8b54baa510ebfbe8f8c80900a9645f88d5c3316950c3ff20c6c9c41b10e", + "id": "0x7a305b9b25129bd2d2fe1fb25387f9595ac60a7bee62519911fc23e33fadf8cc", "count": "0" } }, @@ -98,11 +98,11 @@ Response: { "nodes": [ { "value": { - "address": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "address": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "version": 6, "contents": { "json": { - "id": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "id": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "count": "0" } } @@ -145,7 +145,7 @@ Response: { "object": { "owner": { "parent": { - "address": "0xae88d15fa632e40b9289a65f52d3d882bb05fd692a07db3e47012fff03ed48d4" + "address": "0x8ef98765dff1f57631c60140a4ccbf107b30574055550de619ad3d8b2f1b6495" } }, "dynamicFields": { @@ -175,11 +175,11 @@ Response: { "nodes": [ { "value": { - "address": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "address": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "version": 6, "contents": { "json": { - "id": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "id": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "count": "0" } } @@ -203,11 +203,11 @@ Response: { "nodes": [ { "value": { - "address": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "address": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "version": 6, "contents": { "json": { - "id": "0x14e0fbb3261eb9c70e262159994b0ab0808675ad1a02a226461b16e9349d5a28", + "id": "0xca3b014349c4ac5ab7f7e7998ab3eb200264615363dc749a4082a2ad0fd7cdcb", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp index 886f9bfcf6a..145c6d01f7e 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp @@ -78,7 +78,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IF+A8WqX5cd5PnNIVrmGwDtS/oZTXCbVe5lii8ef5BxYAQAAAAAAAAA=", + "cursor": "ILNWmT6DXDql9qoDV/EF3YpQ36Op/EP5ELwEEwUIZqTGAQAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMQ==" @@ -89,24 +89,24 @@ Response: { } }, { - "cursor": "IJdRlozkqQqyNizjStV8brWmL0xQuwKcL6q4h6y9KxZEAQAAAAAAAAA=", + "cursor": "IOgvEDt90FUbL06dw3nbP7LEQKIVvvfIJe6ACpIHz09rAQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==" + "bcs": "A2RmMw==" }, "value": { - "json": "df2" + "json": "df3" } } }, { - "cursor": "INYQH9O+D1CqZWFE6qfQEbFCbdp0j1L48G3YSzKVAvVLAQAAAAAAAAA=", + "cursor": "IOhfBhBql46Y2hUeCE3R0z1PvoI+9rVuOFg2yDQT8K0MAQAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==" + "bcs": "A2RmMg==" }, "value": { - "json": "df3" + "json": "df2" } } } @@ -201,7 +201,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IF+A8WqX5cd5PnNIVrmGwDtS/oZTXCbVe5lii8ef5BxYAgAAAAAAAAA=", + "cursor": "ILNWmT6DXDql9qoDV/EF3YpQ36Op/EP5ELwEEwUIZqTGAgAAAAAAAAA=", "node": { "name": { "bcs": "A2RmMQ==" @@ -212,24 +212,24 @@ Response: { } }, { - "cursor": "IJdRlozkqQqyNizjStV8brWmL0xQuwKcL6q4h6y9KxZEAgAAAAAAAAA=", + "cursor": "IOgvEDt90FUbL06dw3nbP7LEQKIVvvfIJe6ACpIHz09rAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMg==" + "bcs": "A2RmMw==" }, "value": { - "json": "df2" + "json": "df3" } } }, { - "cursor": "INYQH9O+D1CqZWFE6qfQEbFCbdp0j1L48G3YSzKVAvVLAgAAAAAAAAA=", + "cursor": "IOhfBhBql46Y2hUeCE3R0z1PvoI+9rVuOFg2yDQT8K0MAgAAAAAAAAA=", "node": { "name": { - "bcs": "A2RmMw==" + "bcs": "A2RmMg==" }, "value": { - "json": "df3" + "json": "df2" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp index 10623b08340..989f71226d6 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp @@ -41,7 +41,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKN28qi03eNC5aqxFGWPLKfMRyuM8ocgJW+I5dsX7GnRAQAAAAAAAAA=", + "cursor": "IDNDloyIys+41dU5di8/y2vG0PddirMngky64ewM/8yUAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -49,7 +49,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -65,7 +65,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -77,7 +77,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKN28qi03eNC5aqxFGWPLKfMRyuM8ocgJW+I5dsX7GnRAQAAAAAAAAA=", + "cursor": "IDNDloyIys+41dU5di8/y2vG0PddirMngky64ewM/8yUAQAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -85,7 +85,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -101,7 +101,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -117,7 +117,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -168,7 +168,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } @@ -202,7 +202,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKN28qi03eNC5aqxFGWPLKfMRyuM8ocgJW+I5dsX7GnRAwAAAAAAAAA=", + "cursor": "IDNDloyIys+41dU5di8/y2vG0PddirMngky64ewM/8yUAwAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -210,7 +210,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "1" } } @@ -226,7 +226,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "1" } } @@ -238,7 +238,7 @@ Response: { "dynamicFields": { "edges": [ { - "cursor": "IKN28qi03eNC5aqxFGWPLKfMRyuM8ocgJW+I5dsX7GnRAwAAAAAAAAA=", + "cursor": "IDNDloyIys+41dU5di8/y2vG0PddirMngky64ewM/8yUAwAAAAAAAAA=", "node": { "name": { "bcs": "KgAAAAAAAAA=" @@ -246,7 +246,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "1" } } @@ -262,7 +262,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "1" } } @@ -283,7 +283,7 @@ Response: { "value": { "contents": { "json": { - "id": "0x8e7dab2248fd42c115f3d1be99df937fbe159d92633f8df9293234a3c2bc37cb", + "id": "0x586e113ce7ddb237b897aceb19778854f7ce190bf5ad00e831595ed04c9b1ad2", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp index 943dc81e90b..7790f8e3903 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp @@ -62,11 +62,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "address": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "version": 5, "contents": { "json": { - "id": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "id": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "count": "0" } }, @@ -90,11 +90,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "address": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "version": 5, "contents": { "json": { - "id": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "id": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "count": "0" } }, @@ -102,11 +102,11 @@ Response: { "nodes": [ { "value": { - "address": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "address": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "version": 6, "contents": { "json": { - "id": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "id": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "count": "0" } } @@ -131,11 +131,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "address": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "version": 7, "contents": { "json": { - "id": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "id": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "count": "1" } }, @@ -143,11 +143,11 @@ Response: { "nodes": [ { "value": { - "address": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "address": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "version": 6, "contents": { "json": { - "id": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "id": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "count": "0" } } @@ -172,11 +172,11 @@ Response: { "nodes": [ { "value": { - "address": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "address": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "version": 7, "contents": { "json": { - "id": "0x7cdd23cf6ffe2b061504cf7d619e6e293db4f09f1feed0c829bcdb28bd19cecc", + "id": "0xc7670ed2c54d518b744a8071536cb7c64e9f2b0e1e612abb81cb277a1c577ea4", "count": "1" } }, @@ -184,11 +184,11 @@ Response: { "nodes": [ { "value": { - "address": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "address": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "version": 8, "contents": { "json": { - "id": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "id": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "count": "1" } } @@ -233,11 +233,11 @@ Response: { "nodes": [ { "value": { - "address": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "address": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "version": 6, "contents": { "json": { - "id": "0x5f299c6eea97e6799f66501a7844fe3a9bc9f8f64792fd4442a5359c5465d1a4", + "id": "0xd3c1ada87e0bc04fe046ab8d5959690e39f1d17eb964819907fbb1d106165de3", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp index 239a0f67257..5d3d4848e43 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp @@ -41,19 +41,19 @@ Response: { { "cursor": "eyJjIjozLCJ0IjowLCJpIjpmYWxzZX0", "node": { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" } }, { "cursor": "eyJjIjozLCJ0IjoxLCJpIjpmYWxzZX0", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } }, { @@ -154,19 +154,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6MCwiaSI6ZmFsc2V9", "node": { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" } }, { "cursor": "eyJjIjoxMiwidCI6MSwiaSI6ZmFsc2V9", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjoxMiwidCI6MiwiaSI6ZmFsc2V9", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } }, { @@ -183,19 +183,19 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjowLCJpIjpmYWxzZX0", "node": { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" } }, { "cursor": "eyJjIjo0LCJ0IjoxLCJpIjpmYWxzZX0", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjo0LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } } ] @@ -207,19 +207,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6NCwiaSI6ZmFsc2V9", "node": { - "digest": "Ay1h3NAkKnrkUif97h8ra2cf8ZyXzQvxUrJp7eaN89cV" + "digest": "ESxws3HtgcjvKRyefUr7JAxsFLZWWUfDDAnroqeny4G5" } }, { "cursor": "eyJjIjoxMiwidCI6NSwiaSI6ZmFsc2V9", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP" + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz" } }, { "cursor": "eyJjIjoxMiwidCI6NiwiaSI6ZmFsc2V9", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV" + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9" } }, { @@ -236,19 +236,19 @@ Response: { { "cursor": "eyJjIjo4LCJ0IjowLCJpIjpmYWxzZX0", "node": { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" } }, { "cursor": "eyJjIjo4LCJ0IjoxLCJpIjpmYWxzZX0", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjo4LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } }, { @@ -260,19 +260,19 @@ Response: { { "cursor": "eyJjIjo4LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Ay1h3NAkKnrkUif97h8ra2cf8ZyXzQvxUrJp7eaN89cV" + "digest": "ESxws3HtgcjvKRyefUr7JAxsFLZWWUfDDAnroqeny4G5" } }, { "cursor": "eyJjIjo4LCJ0Ijo1LCJpIjpmYWxzZX0", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP" + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz" } }, { "cursor": "eyJjIjo4LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV" + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9" } } ] @@ -284,19 +284,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6OCwiaSI6ZmFsc2V9", "node": { - "digest": "CvhQVJ7numDYf6yZL4nWtw6Xh5iGYGEyVo23eYzQrBg1" + "digest": "4dqvaY8wktxVDv685kMHE2tYzD3eA2d8CgcL1cnd5GEp" } }, { "cursor": "eyJjIjoxMiwidCI6OSwiaSI6ZmFsc2V9", "node": { - "digest": "DQHEeQgLHCrvGvvMCwSf6nkPJSHPau76ubpxmh1dQpE9" + "digest": "A8y4xLrF2oDM2rmozRsScWd4AmTzkKetdqVgEWsY7ykF" } }, { "cursor": "eyJjIjoxMiwidCI6MTAsImkiOmZhbHNlfQ", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk" + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P" } }, { @@ -313,19 +313,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6MCwiaSI6ZmFsc2V9", "node": { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" } }, { "cursor": "eyJjIjoxMiwidCI6MSwiaSI6ZmFsc2V9", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjoxMiwidCI6MiwiaSI6ZmFsc2V9", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } }, { @@ -337,19 +337,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6NCwiaSI6ZmFsc2V9", "node": { - "digest": "Ay1h3NAkKnrkUif97h8ra2cf8ZyXzQvxUrJp7eaN89cV" + "digest": "ESxws3HtgcjvKRyefUr7JAxsFLZWWUfDDAnroqeny4G5" } }, { "cursor": "eyJjIjoxMiwidCI6NSwiaSI6ZmFsc2V9", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP" + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz" } }, { "cursor": "eyJjIjoxMiwidCI6NiwiaSI6ZmFsc2V9", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV" + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9" } }, { @@ -361,19 +361,19 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6OCwiaSI6ZmFsc2V9", "node": { - "digest": "CvhQVJ7numDYf6yZL4nWtw6Xh5iGYGEyVo23eYzQrBg1" + "digest": "4dqvaY8wktxVDv685kMHE2tYzD3eA2d8CgcL1cnd5GEp" } }, { "cursor": "eyJjIjoxMiwidCI6OSwiaSI6ZmFsc2V9", "node": { - "digest": "DQHEeQgLHCrvGvvMCwSf6nkPJSHPau76ubpxmh1dQpE9" + "digest": "A8y4xLrF2oDM2rmozRsScWd4AmTzkKetdqVgEWsY7ykF" } }, { "cursor": "eyJjIjoxMiwidCI6MTAsImkiOmZhbHNlfQ", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk" + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P" } } ] @@ -395,13 +395,13 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoxLCJpIjpmYWxzZX0", "node": { - "digest": "GUKReG1RoqowmWq3yRJNwHJFiUtCARZnmiccRaBtCi98" + "digest": "Eizx3S9vmb5fWrf9LCABZwMZq7QCCaiWrceKTMZGpETq" } }, { "cursor": "eyJjIjo3LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } }, { @@ -420,13 +420,13 @@ Response: { { "cursor": "eyJjIjoxMSwidCI6NSwiaSI6ZmFsc2V9", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP" + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz" } }, { "cursor": "eyJjIjoxMSwidCI6NiwiaSI6ZmFsc2V9", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV" + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9" } }, { @@ -445,13 +445,13 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6OSwiaSI6ZmFsc2V9", "node": { - "digest": "DQHEeQgLHCrvGvvMCwSf6nkPJSHPau76ubpxmh1dQpE9" + "digest": "A8y4xLrF2oDM2rmozRsScWd4AmTzkKetdqVgEWsY7ykF" } }, { "cursor": "eyJjIjoxMiwidCI6MTAsImkiOmZhbHNlfQ", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk" + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P" } }, { @@ -480,7 +480,7 @@ Response: { { "cursor": "eyJjIjoyLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud" + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa" } } ] @@ -493,7 +493,7 @@ Response: { { "cursor": "eyJjIjo2LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV" + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9" } } ] @@ -506,7 +506,7 @@ Response: { { "cursor": "eyJjIjoxMCwidCI6MTAsImkiOmZhbHNlfQ", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk" + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P" } } ] @@ -527,24 +527,24 @@ Response: { { "cursor": "eyJjIjo2LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV", + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcBgAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYBgAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8BgAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hBgAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohBgAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmBgAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEBgAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4BgAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuBgAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81BgAAAAAAAAA=" } ] } @@ -558,33 +558,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6MiwiaSI6ZmFsc2V9", "node": { - "digest": "ARW7Huh9GW72bMvDoEUY2BQkU2TbgkJeuCtk538E65ud", + "digest": "B5mycAo9Qjma8GXaB33VmBmY5aMphpvUaUGa31dBctQa", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -594,33 +594,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6NCwiaSI6ZmFsc2V9", "node": { - "digest": "Ay1h3NAkKnrkUif97h8ra2cf8ZyXzQvxUrJp7eaN89cV", + "digest": "ESxws3HtgcjvKRyefUr7JAxsFLZWWUfDDAnroqeny4G5", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -630,33 +630,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6NSwiaSI6ZmFsc2V9", "node": { - "digest": "CaWJtdWxxV8QcJyNnX8hnKRxeZsDTwNbRd3MHdRAnswP", + "digest": "AM5g6ZK4RPF6JcCr2Y8pe1SGQrJozxmJ6ZE2dmzZHfnz", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -666,33 +666,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6NiwiaSI6ZmFsc2V9", "node": { - "digest": "8ThoJwqQb8Qfk6FCa4rm3ZaGZXPQNRJV5Q9juj1MKRPV", + "digest": "cZvk4twvcLg8KqTa6Dx7ktHjtsW4T97rSGqRTDFB9i9", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -702,33 +702,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6OCwiaSI6ZmFsc2V9", "node": { - "digest": "CvhQVJ7numDYf6yZL4nWtw6Xh5iGYGEyVo23eYzQrBg1", + "digest": "4dqvaY8wktxVDv685kMHE2tYzD3eA2d8CgcL1cnd5GEp", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -738,33 +738,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6OSwiaSI6ZmFsc2V9", "node": { - "digest": "DQHEeQgLHCrvGvvMCwSf6nkPJSHPau76ubpxmh1dQpE9", + "digest": "A8y4xLrF2oDM2rmozRsScWd4AmTzkKetdqVgEWsY7ykF", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } @@ -774,33 +774,33 @@ Response: { { "cursor": "eyJjIjoxMiwidCI6MTAsImkiOmZhbHNlfQ", "node": { - "digest": "FyorXheep61dt4Uwv6tAGULrjYVKwZMdzQr13C8y1Nwk", + "digest": "2ugu2t43xP3yRHTS2c2uwciMHWhnUXD3MEFeL6ULGe4P", "sender": { "objects": { "edges": [ { - "cursor": "IF6bLapP8AYKd+75F6XPdtdVNSohn1HTgbIpXJvDkyPcDAAAAAAAAAA=" + "cursor": "ICQpHXYiabLxEBP3vj45poVMqWndmwlNXTeqvPVb4MvYDAAAAAAAAAA=" }, { - "cursor": "IHPKWDFJOJ7ilxfCMAN7xvmIhjb1MGWJ9d0bcwAZGMDmDAAAAAAAAAA=" + "cursor": "IDrwgGgIeQ1Eu4pKOfaC/5Bj/wreiCX0C6iAU7MXJw1hDAAAAAAAAAA=" }, { - "cursor": "IIK7UOq2UoSWJJse6R8AmECvlpCy5Y1sZzCDUSROuCg8DAAAAAAAAAA=" + "cursor": "IE3A85TsgU5FMgi+dqWa6alYGPDcGX93ZsDYtLZCmZuRDAAAAAAAAAA=" }, { - "cursor": "IIYxPQues5oY+YIAYbAFU8PoNxE5Ro7nNZdwLtqZX+XmDAAAAAAAAAA=" + "cursor": "IG2J3e4fMYpVluBTe4fgDgUUXYQVoHYW0WnuMHp3duVmDAAAAAAAAAA=" }, { - "cursor": "IJMX5vma2m2RAFDijPaXuQNjfxxT9M8W9SYEAq9aaeohDAAAAAAAAAA=" + "cursor": "IIzCp7wYy3uUvNHb1uOsx9uLRHz+2/8oTCML9cNCPa+4DAAAAAAAAAA=" }, { - "cursor": "IKo/fcaQDpNoJ8FL/ba/CYsYyIkoh6Cc+b3hqvqhk4LPDAAAAAAAAAA=" + "cursor": "IJaaAY0TLLpvQbNriZ4uz9Ypaj6n+IGm6yUSwZLDislUDAAAAAAAAAA=" }, { - "cursor": "IL4q2gkTPbbIZdg6PhcaGW1pw0J9PuGOjTFzGWK9xPHEDAAAAAAAAAA=" + "cursor": "ILFqYFDHXIDzxVBTxk9IS2YrEr0YjBu8YPrHlDf+mT81DAAAAAAAAAA=" }, { - "cursor": "IOgjTJtf/6FlTpu0BCSEiQre3ONPUDwTdz0xbRu+TVWuDAAAAAAAAAA=" + "cursor": "IPufMw9vd+aLxsrWja29I8somQM3GVmqlq+gt1RdyMo0DAAAAAAAAAA=" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp index 63d8d5150c2..2d05fd0cfba 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp @@ -29,7 +29,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "0" } } @@ -57,7 +57,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "1" } } @@ -69,7 +69,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "0" } } @@ -104,7 +104,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "1" } } @@ -134,7 +134,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "1" } } @@ -151,7 +151,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "0" } } @@ -205,7 +205,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "1" } } @@ -222,7 +222,7 @@ Response: { "asMoveObject": { "contents": { "json": { - "id": "0xb9c8ffbf83054e03d776bcb9bb8d81c2792323fb60b16911840b8cd1223d7f35", + "id": "0x7e06e1670c99637a2229b62e3178e98319410f044949a7e80f9dc940b713fa6d", "value": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp index 07ed6957498..fd5221a9387 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp @@ -31,26 +31,24 @@ Response: { "data": { "one_of_these_will_yield_an_object": { "objects": { - "nodes": [] - } - }, - "if_the_other_does_not": { - "nodes": [ - { - "version": 3, - "asMoveObject": { + "nodes": [ + { + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } - } - ] + ] + } + }, + "if_the_other_does_not": { + "nodes": [] } } } @@ -77,26 +75,24 @@ Response: { "data": { "paginating_on_checkpoint_1": { "objects": { - "nodes": [] - } - }, - "should_not_have_more_than_one_result": { - "nodes": [ - { - "version": 3, - "asMoveObject": { + "nodes": [ + { + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } - } - ] + ] + } + }, + "should_not_have_more_than_one_result": { + "nodes": [] } } } @@ -112,10 +108,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -124,35 +120,35 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -173,10 +169,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -185,35 +181,35 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -241,14 +237,14 @@ Response: { "objects": { "nodes": [ { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } }, "owner_at_latest_state_has_iota_only": { @@ -259,10 +255,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -271,10 +267,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } @@ -286,7 +282,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "300000000000000" } @@ -294,26 +290,26 @@ Response: { } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -323,14 +319,14 @@ Response: { } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } }, "owner_at_latest_state_has_iota_only": { @@ -341,10 +337,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -353,10 +349,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } @@ -368,7 +364,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "300000000000000" } @@ -376,26 +372,26 @@ Response: { } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -414,10 +410,10 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } }, @@ -429,10 +425,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -441,10 +437,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } @@ -456,7 +452,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "300000000000000" } @@ -464,26 +460,26 @@ Response: { } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -548,10 +544,10 @@ Response: { "version": 7, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -560,10 +556,10 @@ Response: { "version": 7, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } @@ -572,11 +568,11 @@ Response: { "version": 7, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, @@ -584,11 +580,11 @@ Response: { "version": 7, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } @@ -609,10 +605,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x78f73f033bbf6fe3154d191698b44a8d574f18c87765489c6fe6336a07ade478", + "id": "0x33e71ed21f18a4581f5b9c4472a2ca5cfea62b674846bcdb59c1ce265cce7c65", "value": "3" } } @@ -621,35 +617,35 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x7a2e93dcbe6a24b9129772a38bdfbf4f92e34ed32bac3a67d24d7826940c490b", + "id": "0x5941fbfba611b8863ab492e93f2865a53b3cb64680978fe7e30046e0e443a14c", "value": "2" } } }, { - "version": 4, + "version": 3, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0x90a7d6dc83c8a6a5c755de2dff7f23eb1476dabcdf62c178af306e11c8e31eec", - "value": "1" + "id": "0xacaebcc5ec4007606fe12e5a5e2e5f08117b69a1230ec75d1c2dd04056d293fe", + "value": "0" } } }, { - "version": 3, + "version": 4, "contents": { "type": { - "repr": "0xbcdfcf3eb356188b9d56bd906654682be4e2701812b8b85d295fb2cf0c8eb540::M1::Object" + "repr": "0xdba8b85775e730f7d15abfd3066668cf163cec980587f830f70a40d86b307fa0::M1::Object" }, "json": { - "id": "0xe7cdb4bd9233f7915645ae5d90815f8c80731ecc24f3c304864a55ddd6d9ec32", - "value": "0" + "id": "0xcbb00d35df539f6c42065d152c9482e80068279c542d32107a63e1b2c9847c74", + "value": "1" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp index e6a1ae72d8a..6682a18e477 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp @@ -46,10 +46,10 @@ Response: { "version": 4, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "100" } } @@ -85,10 +85,10 @@ Response: { "version": 4, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "100" } } @@ -110,10 +110,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } } @@ -122,10 +122,10 @@ Response: { "version": 4, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x9ec42e10c73fb04284e39acf692469336f5f7b4c9dfa0cee79e12776aa3b9564", + "id": "0xe277e2fb692fb19b24bc96a4274028492968520522cfde6ed40a06e89491d805", "value": "1" } } @@ -145,10 +145,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } }, @@ -160,10 +160,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } } @@ -172,10 +172,10 @@ Response: { "version": 4, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x9ec42e10c73fb04284e39acf692469336f5f7b4c9dfa0cee79e12776aa3b9564", + "id": "0xe277e2fb692fb19b24bc96a4274028492968520522cfde6ed40a06e89491d805", "value": "1" } } @@ -216,10 +216,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } }, @@ -231,10 +231,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } } @@ -243,10 +243,10 @@ Response: { "version": 4, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x9ec42e10c73fb04284e39acf692469336f5f7b4c9dfa0cee79e12776aa3b9564", + "id": "0xe277e2fb692fb19b24bc96a4274028492968520522cfde6ed40a06e89491d805", "value": "1" } } @@ -273,10 +273,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } } @@ -285,10 +285,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x9ec42e10c73fb04284e39acf692469336f5f7b4c9dfa0cee79e12776aa3b9564", + "id": "0xe277e2fb692fb19b24bc96a4274028492968520522cfde6ed40a06e89491d805", "value": "300" } } @@ -308,10 +308,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } }, @@ -323,10 +323,10 @@ Response: { "version": 5, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x3b3871be586c1577dc2762b64c5d96dd133d646d1451ee4422879772df9fd47c", + "id": "0x63ae6008d3ad559bf8baf6da9ebe7e2e416923783c40c88f6cf6143b8a906456", "value": "200" } } @@ -335,10 +335,10 @@ Response: { "version": 6, "contents": { "type": { - "repr": "0x63a48560be4455576c42db1f2087091d1f49d97370eb5840211d6d96922a38e6::M1::Object" + "repr": "0x1b6574e787bee3dca8a8ad61427d8b666736381ddbf63941be5c90841344da6a::M1::Object" }, "json": { - "id": "0x9ec42e10c73fb04284e39acf692469336f5f7b4c9dfa0cee79e12776aa3b9564", + "id": "0xe277e2fb692fb19b24bc96a4274028492968520522cfde6ed40a06e89491d805", "value": "300" } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp index 5f6eb5b936c..9fe41ff7c64 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp @@ -35,11 +35,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -54,11 +54,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -76,11 +76,11 @@ Response: { }, "contents": { "json": { - "id": "0xfea2e64d50da304df3f0bdd198bdd55950ba2ad8428ba36a71c50499e81196e6", - "value": "84" + "id": "0xff0ffe140c36306443997c66f52ea7e535468be926015b951c06c846d65b729f", + "value": "179" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } }, @@ -92,11 +92,11 @@ Response: { }, "contents": { "json": { - "id": "0xfecc8c412ef16dfd8c66a8d4d06b43b4cf64029e319a726b7e0dff3e1d75a85a", - "value": "425" + "id": "0xff5962b0d2d4a01e432f62939304c32ab0596f4f0852e9ee7b6d66e47e851350", + "value": "307" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } }, @@ -108,11 +108,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } }, @@ -124,11 +124,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -163,7 +163,7 @@ Contents: Test::M1::Object { bytes: fake(2,498), }, }, - value: 79u64, + value: 292u64, } task 9, line 93: @@ -176,7 +176,7 @@ Contents: Test::M1::Object { bytes: fake(2,497), }, }, - value: 425u64, + value: 307u64, } task 10, line 95: @@ -199,11 +199,11 @@ Response: { }, "contents": { "json": { - "id": "0xfecc8c412ef16dfd8c66a8d4d06b43b4cf64029e319a726b7e0dff3e1d75a85a", - "value": "425" + "id": "0xff5962b0d2d4a01e432f62939304c32ab0596f4f0852e9ee7b6d66e47e851350", + "value": "307" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -218,11 +218,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -237,11 +237,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -260,11 +260,11 @@ Response: { }, "contents": { "json": { - "id": "0xfea2e64d50da304df3f0bdd198bdd55950ba2ad8428ba36a71c50499e81196e6", - "value": "84" + "id": "0xff0ffe140c36306443997c66f52ea7e535468be926015b951c06c846d65b729f", + "value": "179" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -287,11 +287,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -305,11 +305,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -325,11 +325,11 @@ Response: { }, "contents": { "json": { - "id": "0xfecc8c412ef16dfd8c66a8d4d06b43b4cf64029e319a726b7e0dff3e1d75a85a", - "value": "425" + "id": "0xff5962b0d2d4a01e432f62939304c32ab0596f4f0852e9ee7b6d66e47e851350", + "value": "307" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -343,11 +343,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -361,11 +361,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -383,11 +383,11 @@ Response: { }, "contents": { "json": { - "id": "0xfecc8c412ef16dfd8c66a8d4d06b43b4cf64029e319a726b7e0dff3e1d75a85a", - "value": "425" + "id": "0xff5962b0d2d4a01e432f62939304c32ab0596f4f0852e9ee7b6d66e47e851350", + "value": "307" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -401,11 +401,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -419,11 +419,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } @@ -442,7 +442,7 @@ Response: { }, "contents": { "json": { - "id": "0x8c83e12848c9a7e043ba418598935d03fb0b57c9400df73504561b03ef0f57aa", + "id": "0x4b951f90683776987540a2067782edf3dd61c44a86469952b9f4570514bcf824", "balance": { "value": "300000000000000" } @@ -461,11 +461,11 @@ Response: { }, "contents": { "json": { - "id": "0xfecc8c412ef16dfd8c66a8d4d06b43b4cf64029e319a726b7e0dff3e1d75a85a", - "value": "425" + "id": "0xff5962b0d2d4a01e432f62939304c32ab0596f4f0852e9ee7b6d66e47e851350", + "value": "307" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } }, @@ -478,11 +478,11 @@ Response: { }, "contents": { "json": { - "id": "0xfee25a3c0ad2918c5715216ccc1064d51e8e119253a858d9c505e49829ce12f2", - "value": "79" + "id": "0xff813956ab016dfbb38f66c1aaa6faeefa61eae3a526db25047b349208e5bd8b", + "value": "292" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } }, @@ -495,11 +495,11 @@ Response: { }, "contents": { "json": { - "id": "0xffbee3b5a935e9df0fd3672f21cba8af4090e405d09a153e4c7d303b9a601c83", - "value": "82" + "id": "0xffee188b3aeb59fb2129398728a72b5b9d39d56763a1b2ae54baeeb07b821b76", + "value": "198" }, "type": { - "repr": "0x89a32608e93b711b15c16024864bc4c9cd544304a074178501304621fce34eeb::M1::Object" + "repr": "0x30df1e6fb3d98a6e42859613e6c3697f36d1e8000676be57b496518081bc7fcf::M1::Object" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp index 8d81fcbcba7..f903c004684 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp @@ -25,7 +25,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 3, line 25: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [49, 170, 24, 91, 48, 51, 59, 190, 186, 64, 208, 42, 198, 226, 201, 28, 175, 76, 24, 236, 175, 216, 35, 217, 155, 5, 253, 225, 16, 3, 242, 32, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [195, 31, 89, 68, 25, 110, 110, 130, 15, 151, 96, 218, 107, 188, 216, 30, 11, 194, 226, 183, 85, 68, 74, 206, 105, 101, 238, 219, 200, 86, 235, 41, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) @@ -49,7 +49,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 7, line 35: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(6,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [49, 170, 24, 91, 48, 51, 59, 190, 186, 64, 208, 42, 198, 226, 201, 28, 175, 76, 24, 236, 175, 216, 35, 217, 155, 5, 253, 225, 16, 3, 242, 32, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [195, 31, 89, 68, 25, 110, 110, 130, 15, 151, 96, 218, 107, 188, 216, 30, 11, 194, 226, 183, 85, 68, 74, 206, 105, 101, 238, 219, 200, 86, 235, 41, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(7,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(6,0) @@ -109,13 +109,13 @@ Response: { "stakedIotas": { "edges": [ { - "cursor": "IAQrAZOt5Tzb2RJIfSxa7ZKgeo4PBwtgbBIDXKYNuoPLBAAAAAAAAAA=", + "cursor": "ICzSs8gJrEchdo/v0DdIPKJpx37IypILVMI4TvKng3QUBAAAAAAAAAA=", "node": { "principal": "10000000000" } }, { - "cursor": "IJrDd+d17c/WP+y988FjFenwhf7ri3M2an2ad/goKgRVBAAAAAAAAAA=", + "cursor": "IFF5UhjX3rRLZTF+xSVIhd3i8TMVBPfSBfA+kaN3yAjlBAAAAAAAAAA=", "node": { "principal": "10000000000" } @@ -158,10 +158,15 @@ task 14, lines 105-148: Response: { "data": { "coins_after_obj_3_0_chkpt_3": { + "stakedIotas": { + "edges": [] + } + }, + "coins_before_obj_3_0_chkpt_3": { "stakedIotas": { "edges": [ { - "cursor": "IJrDd+d17c/WP+y988FjFenwhf7ri3M2an2ad/goKgRVAwAAAAAAAAA=", + "cursor": "ICzSs8gJrEchdo/v0DdIPKJpx37IypILVMI4TvKng3QUAwAAAAAAAAA=", "node": { "principal": "10000000000" } @@ -169,27 +174,22 @@ Response: { ] } }, - "coins_before_obj_3_0_chkpt_3": { - "stakedIotas": { - "edges": [] - } - }, "coins_after_obj_7_0_chkpt_3": { - "stakedIotas": { - "edges": [] - } - }, - "coins_before_obj_7_0_chkpt_3": { "stakedIotas": { "edges": [ { - "cursor": "IAQrAZOt5Tzb2RJIfSxa7ZKgeo4PBwtgbBIDXKYNuoPLAwAAAAAAAAA=", + "cursor": "IFF5UhjX3rRLZTF+xSVIhd3i8TMVBPfSBfA+kaN3yAjlAwAAAAAAAAA=", "node": { "principal": "10000000000" } } ] } + }, + "coins_before_obj_7_0_chkpt_3": { + "stakedIotas": { + "edges": [] + } } } } diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp index 3b300cca1d2..b1fe2560fae 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp @@ -61,66 +61,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -136,66 +136,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -209,66 +209,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -284,7 +284,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "299999993067600" } @@ -306,66 +306,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -390,66 +390,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -463,66 +463,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -538,7 +538,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "300000000000000" } @@ -557,66 +557,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -630,66 +630,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -705,7 +705,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "299999996697200" } @@ -724,66 +724,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -797,66 +797,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -872,7 +872,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "299999993067600" } @@ -907,66 +907,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -982,66 +982,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1055,66 +1055,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1130,7 +1130,7 @@ Response: { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x82bb50eab6528496249b1ee91f009840af9690b2e58d6c67308351244eb8283c", + "id": "0x8cc2a7bc18cb7b94bcd1dbd6e3acc7db8b447cfedbff284c230bf5c3423dafb8", "balance": { "value": "299999993067600" } @@ -1152,66 +1152,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1240,66 +1240,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1313,66 +1313,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1388,66 +1388,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1461,66 +1461,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1536,66 +1536,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } @@ -1609,66 +1609,66 @@ Response: { { "contents": { "json": { - "id": "0x0dfd7a9cdee94766d4c1b19270f7dbd7047e333c3cfd44df8f1e2661a2ac5732", - "value": "2" + "id": "0x3e31773929e57f6b6bc127c1c75d0f93187f424ddedfeecfee415c41e076ab70", + "value": "3" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x192e471166c47da606780a22e86f8a7e2c70e68d041960e09bcaa2c0c1b678b8", - "value": "3" + "id": "0x6e7de18100be473275cca680e33552d179d96f35ff3ea376e55a7b2d14549704", + "value": "5" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x5cf582fc547b526e90fa12b6b4ee03a31f4998e47555971daa39fb90b635acab", - "value": "6" + "id": "0x95224ec845f5c539d5762a944b27a3812cba05c5a60fe093f75778f14a7ceeb8", + "value": "4" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0x8a62e0e4fbced5ff4f9a1ad3644f1af80a2f844b6ef0c2b640f403d5fa3f5f96", - "value": "5" + "id": "0xbe216314b6c4964fdfb35c444f5009270bd5c43845720b385e9fd995e5fe8b6a", + "value": "2" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa028335888c10360e8bd8851992994e834926d82ae1b0b97fcbe79fae04317f0", + "id": "0xda9ff7009f9b3a75e184ec31f71630e078bdf13eea204b190a72dabb16042acc", "value": "200" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } }, { "contents": { "json": { - "id": "0xa3f7a32c0d6c8249a8022873aac692ed3fb9b21b24f670f384727d8462e6f29b", - "value": "4" + "id": "0xe870a50e4e89f5cf42a9a5e82bc742f2df46588b43356582752a789008f4130e", + "value": "6" }, "type": { - "repr": "0x52bdbdebdd919e4a48b0a4d5debed87d2ef865900f1e7633960e97744d276e77::M1::Object" + "repr": "0xe0366adf7e24f087e37952e9a77cff47faa6fc9d8f1477941b71c0a641f4e0d5::M1::Object" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp index bce1c37583a..e4a97219410 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp @@ -11,6 +11,6 @@ task 2, lines 10-13: //# run-graphql Response: { "data": { - "chainIdentifier": "a505a911" + "chainIdentifier": "08ff9a17" } } diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp index f9a2b40f756..178178d4fa9 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp @@ -21,7 +21,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 4, lines 17-19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [49, 170, 24, 91, 48, 51, 59, 190, 186, 64, 208, 42, 198, 226, 201, 28, 175, 76, 24, 236, 175, 216, 35, 217, 155, 5, 253, 225, 16, 3, 242, 32, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [195, 31, 89, 68, 25, 110, 110, 130, 15, 151, 96, 218, 107, 188, 216, 30, 11, 194, 226, 183, 85, 68, 74, 206, 105, 101, 238, 219, 200, 86, 235, 41, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) @@ -67,7 +67,7 @@ Response: { ] }, "validatorCandidatesSize": 0, - "inactivePoolsId": "0x4fa514f402221f721a2b8ae3b09a5fedfd8b1574ef77f18579e9f78d914dc132" + "inactivePoolsId": "0xcc5aa3c1498a06b9bfb7843603ee404c2e785fdb0728d19043fc61b8958c64f7" }, "totalGasFees": "1000000", "totalStakeRewards": "767000000000000", @@ -81,7 +81,7 @@ Response: { "kind": { "__typename": "ProgrammableTransactionBlock" }, - "digest": "6HbK4VgBo4CXAsHZ3VKMJEa71LbHSqwQXMpWQanwdpBA" + "digest": "2A52c7qkFkCdhtN71hqm5GawFSzH4xWXt3BiUnbY87PX" }, { "kind": { diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp index 738fd6061e4..e18544be743 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp @@ -21,7 +21,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 4, line 19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [210, 122, 151, 179, 143, 27, 83, 95, 180, 90, 2, 236, 215, 205, 52, 58, 137, 83, 186, 2, 9, 157, 59, 1, 11, 98, 143, 198, 7, 56, 210, 82, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [47, 15, 10, 57, 141, 19, 131, 181, 87, 30, 102, 210, 169, 49, 11, 236, 88, 192, 83, 44, 104, 86, 198, 204, 151, 94, 72, 157, 170, 19, 81, 134, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) @@ -61,7 +61,7 @@ Epoch advanced: 3 task 12, line 37: //# run 0x3::iota_system::request_withdraw_stake --args object(0x5) object(4,0) --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("UnstakingRequestEvent"), type_params: [] }, contents: [210, 122, 151, 179, 143, 27, 83, 95, 180, 90, 2, 236, 215, 205, 52, 58, 137, 83, 186, 2, 9, 157, 59, 1, 11, 98, 143, 198, 7, 56, 210, 82, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0, 12, 33, 189, 38, 1, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("UnstakingRequestEvent"), type_params: [] }, contents: [47, 15, 10, 57, 141, 19, 131, 181, 87, 30, 102, 210, 169, 49, 11, 236, 88, 192, 83, 44, 104, 86, 198, 204, 151, 94, 72, 157, 170, 19, 81, 134, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0, 12, 33, 189, 38, 1, 0, 0, 0] } created: object(12,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(4,0) diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp index 5b7bad40bc2..12d61755a32 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp @@ -77,67 +77,67 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU8' (line 30), abort 'ImAU8': 0" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU8' (line 30), abort 'ImAU8': 0" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU16' (line 33), abort 'ImAU16': 1" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU16' (line 33), abort 'ImAU16': 1" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU32' (line 36), abort 'ImAU32': 2" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU32' (line 36), abort 'ImAU32': 2" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU64' (line 39), abort 'ImAU64': 3" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU64' (line 39), abort 'ImAU64': 3" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU128' (line 42), abort 'ImAU128': 4" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU128' (line 42), abort 'ImAU128': 4" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU256' (line 45), abort 'ImAU256': 5" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU256' (line 45), abort 'ImAU256': 5" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callAddress' (line 48), abort 'ImAnAddress': 0x0000000000000000000000000000000000000000000000000000000000000006" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callAddress' (line 48), abort 'ImAnAddress': 0x0000000000000000000000000000000000000000000000000000000000000006" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callString' (line 51), abort 'ImAString': This is a string" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callString' (line 51), abort 'ImAString': This is a string" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::callU64vec' (line 54), abort 'ImNotAString': BQEAAAAAAAAAAgAAAAAAAAADAAAAAAAAAAQAAAAAAAAABQAAAAAAAAA=" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::callU64vec' (line 54), abort 'ImNotAString': BQEAAAAAAAAAAgAAAAAAAAADAAAAAAAAAAQAAAAAAAAABQAAAAAAAAA=" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::normalAbort' (instruction 1), abort code: 0" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::normalAbort' (instruction 1), abort code: 0" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x94c6029c2434df14ff8c96780213d2c3ca23bb41b41d917d6b2f2ebb5948bba2::m::assertLineNo' (line 60)" + "errors": "Error in 1st command, from '0x74140215062cd1c50df47029aa245edb5787f96488aee14eeff4051c404ae533::m::assertLineNo' (line 60)" } } ] @@ -248,7 +248,7 @@ Response: { }, "errors": [ { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -264,7 +264,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -280,7 +280,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -296,7 +296,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -312,7 +312,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -328,7 +328,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -344,7 +344,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -360,7 +360,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, @@ -376,7 +376,7 @@ Response: { ] }, { - "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 0f50ae8dea49abaf86777040792217d6569d4a9a478efe805648bbf001b32736", + "message": "Internal error occurred while processing request: Error resolving Move location: Linkage not found for package: 3ce7fc3910a6fc691c5ebca31d1a2faf84c63b1cf472a34b2eabf5194b8c7b1b", "locations": [ { "line": 6, diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp index 59061ed71c7..32ecf97944f 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp @@ -37,19 +37,19 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x241fae3e4d798a2f17994debb2b0ad6fd6cd51b346c9d8ac0e03e2ccebca5572::m::t_a' (line 21)" + "errors": "Error in 1st command, from '0x39bf4f1f4756aaf178d78e475c72a4ae85262b67fed92d1af2c897db856c40c2::m::t_a' (line 21)" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x241fae3e4d798a2f17994debb2b0ad6fd6cd51b346c9d8ac0e03e2ccebca5572::m::t_calls_a' (line 24)" + "errors": "Error in 1st command, from '0x39bf4f1f4756aaf178d78e475c72a4ae85262b67fed92d1af2c897db856c40c2::m::t_calls_a' (line 24)" } }, { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x241fae3e4d798a2f17994debb2b0ad6fd6cd51b346c9d8ac0e03e2ccebca5572::m::t_const_assert' (line 10), abort 'EMsg': This is a string" + "errors": "Error in 1st command, from '0x39bf4f1f4756aaf178d78e475c72a4ae85262b67fed92d1af2c897db856c40c2::m::t_const_assert' (line 10), abort 'EMsg': This is a string" } } ] diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp index f632fa8a6b0..321e1b0ba81 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp @@ -62,7 +62,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -80,7 +80,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -98,7 +98,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -116,7 +116,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -145,7 +145,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -163,7 +163,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -181,7 +181,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -199,7 +199,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M2::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M2::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -228,7 +228,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -246,7 +246,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -275,7 +275,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventA" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -304,7 +304,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::EventB<0x18734bafba8425fa0cfcef1d81c2404447b7aba9377894991fdb48ec8178579f::M1::Object>" + "repr": "0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::EventB<0x03cf03f4e44a11ac0c3a055329f194752be7159926a548b0ff4aedee3c8401f6::M1::Object>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp index 3e0f0d1ba06..82ef64a1e28 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp @@ -30,7 +30,7 @@ Response: { "name": "M3" }, "type": { - "repr": "0xca1ff4dd1b62e221255883bca417b321a5c1ace22988b9fc30533b45bead8d7a::M1::EventA" + "repr": "0x43bcc248318ba2b0990271957c0f0149cb0df5f31b6773c5e19072c3c49ae2f2::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -56,7 +56,7 @@ Response: { "name": "M3" }, "type": { - "repr": "0xca1ff4dd1b62e221255883bca417b321a5c1ace22988b9fc30533b45bead8d7a::M1::EventA" + "repr": "0x43bcc248318ba2b0990271957c0f0149cb0df5f31b6773c5e19072c3c49ae2f2::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -102,7 +102,7 @@ Response: { "name": "M3" }, "type": { - "repr": "0xca1ff4dd1b62e221255883bca417b321a5c1ace22988b9fc30533b45bead8d7a::M1::EventA" + "repr": "0x43bcc248318ba2b0990271957c0f0149cb0df5f31b6773c5e19072c3c49ae2f2::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp index ec8183e645c..d01197e6dd1 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp @@ -33,12 +33,12 @@ Response: { "nodes": [ { "json": { - "id": "0xb6e011ba43a8f27aee78bbc435c234b3fce376c8d60344943a44559ade21177f" + "id": "0xd67b5c6cd9e27cd7d728519d60fdbb215c6d93da1b7778181f5ab263507248b3" } }, { "json": { - "id": "0xb6e011ba43a8f27aee78bbc435c234b3fce376c8d60344943a44559ade21177f", + "id": "0xd67b5c6cd9e27cd7d728519d60fdbb215c6d93da1b7778181f5ab263507248b3", "version": 1, "fields": { "contents": [ diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp index 2bbbd7814fd..91fd65462c5 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp @@ -42,7 +42,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -60,7 +60,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -78,7 +78,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -111,7 +111,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -129,7 +129,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -162,7 +162,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -180,7 +180,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -213,7 +213,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -231,7 +231,7 @@ Response: { "name": "M1" }, "type": { - "repr": "0x3c6f36ccaf3c22c331de4bc921054be9415a5ddaee8e84cdb3fe6c0ceba0be63::M1::EventA" + "repr": "0x88c76c8a87b5523989bfccc67fce960ffe928809482cbb9d93645d166ae410c8::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp index 1c6bf222bbd..82b88b85aa9 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp @@ -37,19 +37,19 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" }, { - "digest": "HUi3tvRsCvbSjuhnFvniVBSd9s74cnLkMmg7r39tUciy" + "digest": "F8z11KNSYyUsBD9ggqQkqm4AgDGgVvfzDntJMW8Z5a3j" }, { - "digest": "G3D18M1UjMxG2anS67U9iiKNzT8vEpohY85LNcvaQoZR" + "digest": "8h2qDXpVYkN95m5SupmMWFJfHw2x9GTESNsw5nnL9j4N" }, { - "digest": "GzkLZu91TX1CQKpAPmUMVUBETfuK48NjhYt9ikD4bSwh" + "digest": "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc" }, { - "digest": "2Wn17H19KQAHB8f9XhdP16DVKdZhEt1e3o7nWK6fAVMS" + "digest": "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE" } ] } @@ -61,7 +61,24 @@ task 7, lines 46-58: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6MywiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "2" + } + } + }, + { + "cursor": "eyJ0eCI6MywiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "3" + } + } + } + ] } } } @@ -91,7 +108,24 @@ task 10, lines 93-105: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6NCwiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "4" + } + } + }, + { + "cursor": "eyJ0eCI6NCwiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "5" + } + } + } + ] } } } @@ -101,7 +135,16 @@ task 11, lines 107-119: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6NCwiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "5" + } + } + } + ] } } } @@ -111,7 +154,24 @@ task 12, lines 122-134: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6MywiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "2" + } + } + }, + { + "cursor": "eyJ0eCI6MywiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "3" + } + } + } + ] } } } @@ -121,7 +181,16 @@ task 13, lines 136-149: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6MywiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "2" + } + } + } + ] } } } @@ -141,7 +210,24 @@ task 15, lines 169-181: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6NCwiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "4" + } + } + }, + { + "cursor": "eyJ0eCI6NCwiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "5" + } + } + } + ] } } } @@ -151,7 +237,16 @@ task 16, lines 183-195: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6NCwiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "4" + } + } + } + ] } } } @@ -161,7 +256,24 @@ task 17, lines 197-210: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6MywiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "2" + } + } + }, + { + "cursor": "eyJ0eCI6MywiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "3" + } + } + } + ] } } } @@ -171,7 +283,24 @@ task 18, lines 212-225: Response: { "data": { "events": { - "edges": [] + "edges": [ + { + "cursor": "eyJ0eCI6NCwiZSI6MCwiYyI6MX0", + "node": { + "json": { + "new_value": "4" + } + } + }, + { + "cursor": "eyJ0eCI6NCwiZSI6MSwiYyI6MX0", + "node": { + "json": { + "new_value": "5" + } + } + } + ] } } } diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.move b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.move index f794e2404ab..d21ac5cdbcd 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.move +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.move @@ -47,7 +47,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -62,7 +62,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(after: "@{cursor_0}" filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(after: "@{cursor_0}" filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -79,7 +79,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(after: "@{cursor_0}" filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(after: "@{cursor_0}" filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -94,7 +94,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(filter: {transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { @@ -108,7 +108,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(after: "@{cursor_0}" filter: {transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(after: "@{cursor_0}" filter: {transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { @@ -123,7 +123,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(last: 10 filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(last: 10 filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -138,7 +138,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -155,7 +155,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -170,7 +170,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(last: 10 filter: {transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(last: 10 filter: {transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { @@ -184,7 +184,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(last: 10 before: "@{cursor_0}" filter: {transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { @@ -199,7 +199,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {sender: "@{A}" transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(filter: {sender: "@{A}" transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -214,7 +214,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {sender: "@{B}" transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(filter: {sender: "@{B}" transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { @@ -229,7 +229,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 4th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {sender: "@{B}" transactionDigest: "8kPLT27dhuva4i5SCqEZFFsBuBD1NZuYcMZnVBEPkhnU"}) { + events(filter: {sender: "@{B}" transactionDigest: "3UpQ5k6ubWDEsCGeh39ZD7wRk8mx7LEHM7bxVC1kL1pc"}) { edges { cursor node { @@ -244,7 +244,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned by # task 6 (see `tx_digest.exp`) - events(filter: {sender: "@{A}" transactionDigest: "5NrZrqgHFvE75nD5DmpyWgbr1rjPNwFqh86cn2v9eB7V"}) { + events(filter: {sender: "@{A}" transactionDigest: "BLYdLfV5uMQrev9TDtkKbcDoz74NJ76yjCyEBnhgWueE"}) { edges { cursor node { diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp index 1b3c812fe2b..ff74717b3ca 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp @@ -30,7 +30,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M1::EventA" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -72,7 +72,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M1::EventA" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -98,7 +98,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M2::EventB" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M2::EventB" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -124,7 +124,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M1::EventA" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -139,7 +139,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M2::EventB" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M2::EventB" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -165,7 +165,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M1::EventA" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M1::EventA" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -180,7 +180,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M2::EventB" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M2::EventB" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -195,7 +195,7 @@ Response: { "name": "M2" }, "type": { - "repr": "0xf431b4cab19dce38fdeb5af2f25aa5c7642cbf5a6736bcf4cd0cf6cedcd6e563::M2::EventB" + "repr": "0x49284428bcccf61063870e5ab7607536c4c0bd77161b34f669cbb3bfe40a15c1::M2::EventB" }, "sender": { "address": "0x28f02a953f3553f51a9365593c7d4bd0643d2085f004b18c6ca9de51682b2c80" diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp index f20d79dfa38..bb10e9510cd 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp @@ -38,19 +38,19 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "4pDtmR9vkzE8azKseWj5VXQQiz7616KJAGftpBncdmnF" + "digest": "J2ipHUWhTfsoqMAG5AfXSsKG73c3oSqsxwQns9WP7WKv" }, { - "digest": "CN1bk5oGVbQh2cTepoMpk3vJ4Rss16Pciz7q69vtSfBK" + "digest": "4xfhbjq2tmnU63qBvJmNoVHkn6ZDpc5tM7um5KZmcbD6" }, { - "digest": "6sxce4EnoEKB5a8Kkb7j9Y2kdvM25cQ4AR7ZhhQaHoNf" + "digest": "7KMh62FuUiuURWVLJ2h5u7x5HevR8xbM9cH1TJQpaCyJ" }, { - "digest": "7Jn3bBawv39UcLpSwNJy4d8sZjvXm6HDaUvAzAkzymfu" + "digest": "Ey8hFbd31T3ADiCyEDHAbQiEf4jTTguLAvwVU1ecZbmZ" }, { - "digest": "5cXJjik7eCRpzRAZhZFczJ8NLXVAHr2ZtKMAkKunCGWb" + "digest": "AQdZp8NXSwowHBawy2qpoyST1LTpFLKr6uRyPAZ4LuZN" } ] } @@ -65,7 +65,7 @@ Response: { "nodes": [ { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T1>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T1>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -78,7 +78,7 @@ Response: { }, { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T2>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T2>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -91,7 +91,7 @@ Response: { }, { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T1>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T1>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -104,7 +104,7 @@ Response: { }, { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T2>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T2>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -128,7 +128,7 @@ Response: { "nodes": [ { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T1>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T1>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -141,7 +141,7 @@ Response: { }, { "type": { - "repr": "0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::EventA<0xa78e531f537de9ea340c341127d77b622c0b1744aef6f50fd6e85e3de3151894::M1::T1>" + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T1>" }, "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" @@ -162,7 +162,21 @@ task 9, lines 80-95: Response: { "data": { "events": { - "nodes": [] + "nodes": [ + { + "type": { + "repr": "0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::EventA<0x99e00ccb32fb943aafc2abe1722722f9ae1557e3efe3196623d9631c7286f2dd::M1::T2>" + }, + "sender": { + "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" + }, + "json": { + "value": { + "dummy_field": false + } + } + } + ] } } } diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.move b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.move index 6a8c249e01f..e3a06262c11 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.move +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.move @@ -81,7 +81,7 @@ module Test::M1 { { # `transactionDigest` is the digest of the 5th transaction returned from # task 6 (see `type_param_filter.exp`) - events(filter: {eventType: "@{Test}::M1::EventA<@{Test}::M1::T2>", transactionDigest: "ECJhnduFaZDQdcnG6iNdKweAnq6LvgnkvuDWVkAFwywj"}) { + events(filter: {eventType: "@{Test}::M1::EventA<@{Test}::M1::T2>", transactionDigest: "AQdZp8NXSwowHBawy2qpoyST1LTpFLKr6uRyPAZ4LuZN"}) { nodes { type { repr diff --git a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp index a3d59975e32..7127ef4b2f8 100644 --- a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp +++ b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp @@ -73,7 +73,7 @@ task 5, lines 59-63: //# run-graphql Response: { "data": { - "chainIdentifier": "a505a911" + "chainIdentifier": "08ff9a17" } } @@ -81,7 +81,7 @@ task 6, lines 65-69: //# run-graphql Response: { "data": { - "chainIdentifier": "a505a911" + "chainIdentifier": "08ff9a17" } } diff --git a/crates/iota-graphql-e2e-tests/tests/limits/output_node_estimation.exp b/crates/iota-graphql-e2e-tests/tests/limits/output_node_estimation.exp index 0eeb20274e3..c8b4503eabe 100644 --- a/crates/iota-graphql-e2e-tests/tests/limits/output_node_estimation.exp +++ b/crates/iota-graphql-e2e-tests/tests/limits/output_node_estimation.exp @@ -30,7 +30,7 @@ Response: { "edges": [ { "node": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -59,7 +59,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -91,7 +91,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -100,7 +100,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -132,7 +132,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -164,7 +164,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -190,7 +190,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } } ] @@ -216,7 +216,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj", + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU", "first": null, "last": null } @@ -243,7 +243,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj", + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU", "first": null, "last": null } @@ -270,7 +270,7 @@ Response: { "edges": [ { "txns": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj", + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU", "a": null, "b": null } @@ -324,7 +324,7 @@ Response: { "edges": [ { "node": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj", + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU", "a": null } } @@ -350,14 +350,14 @@ Response: { "fragmentSpread": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } ] }, "inlineFragment": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp index a859d76ec9e..210d775ee2c 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp @@ -21,7 +21,7 @@ Response: { "iotaCoins": { "edges": [ { - "cursor": "IFDCMJdJdLjT6Le+OZddM2C8ehm/ZJHKVlw51Hw+PN9LAQAAAAAAAAA=", + "cursor": "IA1BL9Rg6Tz1+fS0jDoQxiG1hiWBzi6pUxy1czfrYezSAQAAAAAAAAA=", "node": { "coinBalance": "30000000000000000", "contents": { @@ -32,9 +32,9 @@ Response: { } }, { - "cursor": "IHDpnPLb0qHgSGOGbvrnR/7p74bRRkkFAnpR7Lg2PFTQAQAAAAAAAAA=", + "cursor": "IBSMpwkvL+MVuPEDyfmhzf7iKvJt1a7x+cACBNETbtTkAQAAAAAAAAA=", "node": { - "coinBalance": "300000000000000", + "coinBalance": "299999983336400", "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" @@ -43,9 +43,9 @@ Response: { } }, { - "cursor": "IL9P0IAc2pvdRxMxausgZ/QNypMBcUq568HF9Kd+G6qVAQAAAAAAAAA=", + "cursor": "IHcydTSjlJsV68BfT3yUI07a06sS+7f7DKjVcPC389CbAQAAAAAAAAA=", "node": { - "coinBalance": "299999983336400", + "coinBalance": "300000000000000", "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" @@ -58,34 +58,34 @@ Response: { "fakeCoins": { "edges": [ { - "cursor": "IFA4jBAHNkqHQtofzy4hIHphXB4tCAbEldUb4NRilcOGAQAAAAAAAAA=", + "cursor": "IAmHKw2BEkNB69tZiLJGHPeXBI9ajuTnY0u048XTJTe0AQAAAAAAAAA=", "node": { - "coinBalance": "1", + "coinBalance": "2", "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x1e33d29ef2dc3b026aa7266a3d2011e4aa201e84b5fb3f1367082b37f54da374::fake::FAKE>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x949c1c3e99cf78295c5a255ef55758d78873d5f20d2b9a13df4127036319a1ca::fake::FAKE>" } } } }, { - "cursor": "IGJIfsW7fZrYpkDNTP3pln7VBXM75eeK0ZA4ejDGv91yAQAAAAAAAAA=", + "cursor": "ICF6Q0bn1c2o3bJ9n8Wpbx4IIoOKueRuFs/uP42C/BcgAQAAAAAAAAA=", "node": { - "coinBalance": "2", + "coinBalance": "1", "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x1e33d29ef2dc3b026aa7266a3d2011e4aa201e84b5fb3f1367082b37f54da374::fake::FAKE>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x949c1c3e99cf78295c5a255ef55758d78873d5f20d2b9a13df4127036319a1ca::fake::FAKE>" } } } }, { - "cursor": "II2PjSigywJzW7GoyZlAjsss5ivN5WyqNwcZOQL3v4UlAQAAAAAAAAA=", + "cursor": "IKI0GVmK7xKOKCZhUXDom9nHgMyt1mlxoSxVOrzpTgodAQAAAAAAAAA=", "node": { "coinBalance": "3", "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x1e33d29ef2dc3b026aa7266a3d2011e4aa201e84b5fb3f1367082b37f54da374::fake::FAKE>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x949c1c3e99cf78295c5a255ef55758d78873d5f20d2b9a13df4127036319a1ca::fake::FAKE>" } } } @@ -96,7 +96,7 @@ Response: { "coins": { "edges": [ { - "cursor": "IL9P0IAc2pvdRxMxausgZ/QNypMBcUq568HF9Kd+G6qVAQAAAAAAAAA=", + "cursor": "IBSMpwkvL+MVuPEDyfmhzf7iKvJt1a7x+cACBNETbtTkAQAAAAAAAAA=", "node": { "coinBalance": "299999983336400", "contents": { @@ -121,10 +121,10 @@ Response: { } }, { - "cursor": "eyJ0IjoiMHgxZTMzZDI5ZWYyZGMzYjAyNmFhNzI2NmEzZDIwMTFlNGFhMjAxZTg0YjVmYjNmMTM2NzA4MmIzN2Y1NGRhMzc0OjpmYWtlOjpGQUtFIiwiYyI6MX0", + "cursor": "eyJ0IjoiMHg5NDljMWMzZTk5Y2Y3ODI5NWM1YTI1NWVmNTU3NThkNzg4NzNkNWYyMGQyYjlhMTNkZjQxMjcwMzYzMTlhMWNhOjpmYWtlOjpGQUtFIiwiYyI6MX0", "node": { "coinType": { - "repr": "0x1e33d29ef2dc3b026aa7266a3d2011e4aa201e84b5fb3f1367082b37f54da374::fake::FAKE" + "repr": "0x949c1c3e99cf78295c5a255ef55758d78873d5f20d2b9a13df4127036319a1ca::fake::FAKE" }, "coinObjectCount": 3, "totalBalance": "6" @@ -142,7 +142,7 @@ Response: { "lastBalance": { "edges": [ { - "cursor": "eyJ0IjoiMHgxZTMzZDI5ZWYyZGMzYjAyNmFhNzI2NmEzZDIwMTFlNGFhMjAxZTg0YjVmYjNmMTM2NzA4MmIzN2Y1NGRhMzc0OjpmYWtlOjpGQUtFIiwiYyI6MX0" + "cursor": "eyJ0IjoiMHg5NDljMWMzZTk5Y2Y3ODI5NWM1YTI1NWVmNTU3NThkNzg4NzNkNWYyMGQyYjlhMTNkZjQxMjcwMzYzMTlhMWNhOjpmYWtlOjpGQUtFIiwiYyI6MX0" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/data.exp b/crates/iota-graphql-e2e-tests/tests/objects/data.exp index 503cca381fa..a55c269d8d4 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/data.exp @@ -44,38 +44,38 @@ Response: { "name": "id", "value": { "UID": [ + 119, + 50, + 117, + 52, + 163, + 148, + 155, + 21, + 235, + 192, + 95, + 79, + 124, + 148, + 35, + 78, + 218, + 211, + 171, + 18, + 251, + 183, + 251, + 12, + 168, + 213, 112, - 233, - 156, - 242, - 219, - 210, - 161, - 224, - 72, - 99, - 134, - 110, - 250, - 231, - 71, - 254, - 233, - 239, - 134, - 209, - 70, - 73, - 5, - 2, - 122, - 81, - 236, - 184, - 54, - 60, - 84, - 208 + 240, + 183, + 243, + 208, + 155 ] } }, @@ -95,7 +95,7 @@ Response: { ] }, "json": { - "id": "0x70e99cf2dbd2a1e04863866efae747fee9ef86d1464905027a51ecb8363c54d0", + "id": "0x77327534a3949b15ebc05f4f7c94234edad3ab12fbb7fb0ca8d570f0b7f3d09b", "balance": { "value": "299999988454400" } @@ -109,7 +109,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x498711649918127f97a23a33f69bb23d636c094bf0a2dfb0b7928e70768f46ca::m::Foo" + "repr": "0x484ba073380456eec654b7b8e0d5e21a752fe0c0e6ff582039bdbe7ce8f72a38::m::Foo" }, "data": { "Struct": [ @@ -117,38 +117,38 @@ Response: { "name": "id", "value": { "UID": [ - 184, - 164, + 242, + 233, + 240, + 242, + 53, + 173, + 120, + 218, + 49, + 50, + 33, 255, - 211, - 205, - 0, - 70, + 124, + 42, + 203, + 215, + 122, + 170, + 181, + 222, + 18, + 148, + 231, + 121, + 80, + 196, 88, - 65, - 141, - 214, + 212, 253, - 1, - 103, - 29, - 67, - 20, - 52, - 1, - 37, - 200, - 49, - 85, - 45, - 76, - 59, - 195, - 241, - 172, - 24, - 62, - 220 + 2, + 34, + 35 ] } }, @@ -156,38 +156,38 @@ Response: { "name": "f0", "value": { "ID": [ - 184, - 164, + 242, + 233, + 240, + 242, + 53, + 173, + 120, + 218, + 49, + 50, + 33, 255, - 211, - 205, - 0, - 70, + 124, + 42, + 203, + 215, + 122, + 170, + 181, + 222, + 18, + 148, + 231, + 121, + 80, + 196, 88, - 65, - 141, - 214, + 212, 253, - 1, - 103, - 29, - 67, - 20, - 52, - 1, - 37, - 200, - 49, - 85, - 45, - 76, - 59, - 195, - 241, - 172, - 24, - 62, - 220 + 2, + 34, + 35 ] } }, @@ -227,38 +227,38 @@ Response: { "Vector": [ { "Address": [ - 184, - 164, + 242, + 233, + 240, + 242, + 53, + 173, + 120, + 218, + 49, + 50, + 33, 255, - 211, - 205, - 0, - 70, + 124, + 42, + 203, + 215, + 122, + 170, + 181, + 222, + 18, + 148, + 231, + 121, + 80, + 196, 88, - 65, - 141, - 214, + 212, 253, - 1, - 103, - 29, - 67, - 20, - 52, - 1, - 37, - 200, - 49, - 85, - 45, - 76, - 59, - 195, - 241, - 172, - 24, - 62, - 220 + 2, + 34, + 35 ] } ] @@ -275,15 +275,15 @@ Response: { ] }, "json": { - "id": "0xb8a4ffd3cd004658418dd6fd01671d4314340125c831552d4c3bc3f1ac183edc", - "f0": "0xb8a4ffd3cd004658418dd6fd01671d4314340125c831552d4c3bc3f1ac183edc", + "id": "0xf2e9f0f235ad78da313221ff7c2acbd77aaab5de1294e77950c458d4fd022223", + "f0": "0xf2e9f0f235ad78da313221ff7c2acbd77aaab5de1294e77950c458d4fd022223", "f1": true, "f2": 42, "f3": "43", "f4": "hello", "f5": "world", "f6": [ - "0xb8a4ffd3cd004658418dd6fd01671d4314340125c831552d4c3bc3f1ac183edc" + "0xf2e9f0f235ad78da313221ff7c2acbd77aaab5de1294e77950c458d4fd022223" ], "f7": 44 } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/display.exp b/crates/iota-graphql-e2e-tests/tests/objects/display.exp index a9f50951805..f21368482bb 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/display.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/display.exp @@ -5,7 +5,7 @@ A: object(0,0) task 1, lines 7-131: //# publish --sender A -events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("DisplayCreated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [248, 137, 132, 239, 209, 171, 93, 58, 95, 75, 91, 157, 171, 12, 120, 197, 127, 173, 56, 170, 100, 196, 176, 190, 137, 70, 125, 38, 161, 168, 46, 158] } +events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("DisplayCreated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227] } created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) gas summary: computation_cost: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 @@ -16,7 +16,7 @@ Checkpoint created: 1 task 3, line 135: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 1, content_digest: 8bqohxWi718dVQ8LyyLiY918owiBWuRnHkudztaTgK5p, +CheckpointSummary { epoch: 0, seq: 1, content_digest: 3dvEAumcNUKy7sveksovXvSCGVgkauvgfEEY2bKTQTB7, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 4, line 137: @@ -27,7 +27,7 @@ gas summary: computation_cost: 1000000, storage_cost: 3556800, storage_rebate: task 5, line 139: //# run Test::boars::update_display_faulty --sender A --args object(1,1) -events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [248, 137, 132, 239, 209, 171, 93, 58, 95, 75, 91, 157, 171, 12, 120, 197, 127, 173, 56, 170, 100, 196, 176, 190, 137, 70, 125, 38, 161, 168, 46, 158, 1, 0, 3, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125] } +events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 1, 0, 3, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125] } mutated: object(0,0), object(1,1) gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 2652400, non_refundable_storage_fee: 0 @@ -37,7 +37,7 @@ Checkpoint created: 2 task 7, line 143: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 2, content_digest: 3hLJWozoaCNj2NgL516hNXfzxNr5HZ936iDUAb7HEToC, +CheckpointSummary { epoch: 0, seq: 2, content_digest: FwvP3KaQW7qg7WBvf5wrv1X565dt5taQ6BGoXVkTUpcz, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, storage_cost: 27968000, storage_rebate: 3640400, non_refundable_storage_fee: 0 }} task 8, lines 145-158: @@ -74,7 +74,7 @@ Response: { task 9, line 160: //# run Test::boars::single_add --sender A --args object(1,1) -events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [248, 137, 132, 239, 209, 171, 93, 58, 95, 75, 91, 157, 171, 12, 120, 197, 127, 173, 56, 170, 100, 196, 176, 190, 137, 70, 125, 38, 161, 168, 46, 158, 2, 0, 4, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125] } +events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 2, 0, 4, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125] } mutated: object(0,0), object(1,1) gas summary: computation_cost: 1000000, storage_cost: 3032400, storage_rebate: 2941200, non_refundable_storage_fee: 0 @@ -84,7 +84,7 @@ Checkpoint created: 3 task 11, line 164: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 3, content_digest: GT5JWyT5cHsdfW3ohoPM6KnKDGePn4DQTV7r2WGbL6YJ, +CheckpointSummary { epoch: 0, seq: 3, content_digest: 9Bp6PrWcsMVx7KXc3GQzVYqq9jFrdtzpC84ALe3frFye, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, storage_cost: 31000400, storage_rebate: 6581600, non_refundable_storage_fee: 0 }} task 12, lines 166-179: @@ -126,7 +126,7 @@ Response: { task 13, line 181: //# run Test::boars::multi_add --sender A --args object(1,1) -events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [248, 137, 132, 239, 209, 171, 93, 58, 95, 75, 91, 157, 171, 12, 120, 197, 127, 173, 56, 170, 100, 196, 176, 190, 137, 70, 125, 38, 161, 168, 46, 158, 3, 0, 15, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125, 5, 98, 111, 111, 108, 115, 7, 123, 98, 111, 111, 108, 115, 125, 5, 98, 117, 121, 101, 114, 7, 123, 98, 117, 121, 101, 114, 125, 4, 110, 97, 109, 101, 6, 123, 110, 97, 109, 101, 125, 7, 99, 114, 101, 97, 116, 111, 114, 9, 123, 99, 114, 101, 97, 116, 111, 114, 125, 5, 112, 114, 105, 99, 101, 7, 123, 112, 114, 105, 99, 101, 125, 11, 112, 114, 111, 106, 101, 99, 116, 95, 117, 114, 108, 58, 85, 110, 105, 113, 117, 101, 32, 66, 111, 97, 114, 32, 102, 114, 111, 109, 32, 116, 104, 101, 32, 66, 111, 97, 114, 115, 32, 99, 111, 108, 108, 101, 99, 116, 105, 111, 110, 32, 119, 105, 116, 104, 32, 123, 110, 97, 109, 101, 125, 32, 97, 110, 100, 32, 123, 105, 100, 125, 8, 98, 97, 115, 101, 95, 117, 114, 108, 32, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 123, 105, 109, 103, 95, 117, 114, 108, 125, 11, 110, 111, 95, 116, 101, 109, 112, 108, 97, 116, 101, 23, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 3, 97, 103, 101, 21, 123, 109, 101, 116, 97, 100, 97, 116, 97, 46, 110, 101, 115, 116, 101, 100, 46, 97, 103, 101, 125, 8, 102, 117, 108, 108, 95, 117, 114, 108, 10, 123, 102, 117, 108, 108, 95, 117, 114, 108, 125, 13, 101, 115, 99, 97, 112, 101, 95, 115, 121, 110, 116, 97, 120, 8, 92, 123, 110, 97, 109, 101, 92, 125] } +events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 3, 0, 15, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125, 5, 98, 111, 111, 108, 115, 7, 123, 98, 111, 111, 108, 115, 125, 5, 98, 117, 121, 101, 114, 7, 123, 98, 117, 121, 101, 114, 125, 4, 110, 97, 109, 101, 6, 123, 110, 97, 109, 101, 125, 7, 99, 114, 101, 97, 116, 111, 114, 9, 123, 99, 114, 101, 97, 116, 111, 114, 125, 5, 112, 114, 105, 99, 101, 7, 123, 112, 114, 105, 99, 101, 125, 11, 112, 114, 111, 106, 101, 99, 116, 95, 117, 114, 108, 58, 85, 110, 105, 113, 117, 101, 32, 66, 111, 97, 114, 32, 102, 114, 111, 109, 32, 116, 104, 101, 32, 66, 111, 97, 114, 115, 32, 99, 111, 108, 108, 101, 99, 116, 105, 111, 110, 32, 119, 105, 116, 104, 32, 123, 110, 97, 109, 101, 125, 32, 97, 110, 100, 32, 123, 105, 100, 125, 8, 98, 97, 115, 101, 95, 117, 114, 108, 32, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 123, 105, 109, 103, 95, 117, 114, 108, 125, 11, 110, 111, 95, 116, 101, 109, 112, 108, 97, 116, 101, 23, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 3, 97, 103, 101, 21, 123, 109, 101, 116, 97, 100, 97, 116, 97, 46, 110, 101, 115, 116, 101, 100, 46, 97, 103, 101, 125, 8, 102, 117, 108, 108, 95, 117, 114, 108, 10, 123, 102, 117, 108, 108, 95, 117, 114, 108, 125, 13, 101, 115, 99, 97, 112, 101, 95, 115, 121, 110, 116, 97, 120, 8, 92, 123, 110, 97, 109, 101, 92, 125] } mutated: object(0,0), object(1,1) gas summary: computation_cost: 1000000, storage_cost: 5236400, storage_rebate: 3032400, non_refundable_storage_fee: 0 @@ -136,7 +136,7 @@ Checkpoint created: 4 task 15, line 185: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 4, content_digest: FZ3NUMDDNAYyo9F5SCfMWxiNhVBXBGXq2sExSuqFRci7, +CheckpointSummary { epoch: 0, seq: 4, content_digest: BUktWMWFSWFXiKwCtLJoRtb9nPh7vDWTUWk2hyGHWWfP, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, storage_cost: 36236800, storage_rebate: 9614000, non_refundable_storage_fee: 0 }} task 16, lines 187-200: @@ -195,7 +195,7 @@ Response: { }, { "key": "project_url", - "value": "Unique Boar from the Boars collection with First Boar and 0x2ca38919c6ef2883f3e5b20bb603e89a26eb971435a4db4b422bdd0b510bb97a", + "value": "Unique Boar from the Boars collection with First Boar and 0x4a4a4465735d0a9eec2a505ba1c3ae282093120cc39b5a607cfb6198ae2ebd06", "error": null }, { diff --git a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp index 73e5a4c756f..20f8e38dd4f 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp @@ -44,38 +44,38 @@ Response: { "name": "id", "value": { "UID": [ + 119, + 50, + 117, + 52, + 163, + 148, + 155, + 21, + 235, + 192, + 95, + 79, + 124, + 148, + 35, + 78, + 218, + 211, + 171, + 18, + 251, + 183, + 251, + 12, + 168, + 213, 112, - 233, - 156, - 242, - 219, - 210, - 161, - 224, - 72, - 99, - 134, - 110, - 250, - 231, - 71, - 254, - 233, - 239, - 134, - 209, - 70, - 73, - 5, - 2, - 122, - 81, - 236, - 184, - 54, - 60, - 84, - 208 + 240, + 183, + 243, + 208, + 155 ] } }, @@ -95,7 +95,7 @@ Response: { ] }, "json": { - "id": "0x70e99cf2dbd2a1e04863866efae747fee9ef86d1464905027a51ecb8363c54d0", + "id": "0x77327534a3949b15ebc05f4f7c94234edad3ab12fbb7fb0ca8d570f0b7f3d09b", "balance": { "value": "299999995967600" } @@ -109,7 +109,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x09e9ea19900041e086ff7a4daea031f781e0b2b5fe4a6fc7d0aab9d96335405e::m::Foo" + "repr": "0x40667453c374c4f1f82721c84a96426390e205dd72719e0c0854a5d5e9f95ec3::m::Foo" }, "data": { "Struct": [ @@ -117,38 +117,38 @@ Response: { "name": "id", "value": { "UID": [ - 147, - 80, - 56, - 94, - 196, - 219, - 69, + 241, + 159, + 198, + 5, + 67, + 13, + 243, + 161, 255, - 108, - 11, - 82, - 234, - 181, - 174, - 32, - 45, - 160, - 129, - 40, - 102, - 104, + 159, + 113, + 200, + 60, + 138, + 184, + 152, + 23, + 26, + 109, + 213, + 78, 73, - 146, - 209, - 143, - 102, - 228, - 61, - 103, - 79, - 99, - 143 + 207, + 135, + 117, + 157, + 252, + 67, + 85, + 240, + 121, + 244 ] } }, @@ -156,38 +156,38 @@ Response: { "name": "f0", "value": { "ID": [ - 147, - 80, - 56, - 94, - 196, - 219, - 69, + 241, + 159, + 198, + 5, + 67, + 13, + 243, + 161, 255, - 108, - 11, - 82, - 234, - 181, - 174, - 32, - 45, - 160, - 129, - 40, - 102, - 104, + 159, + 113, + 200, + 60, + 138, + 184, + 152, + 23, + 26, + 109, + 213, + 78, 73, - 146, - 209, - 143, - 102, - 228, - 61, - 103, - 79, - 99, - 143 + 207, + 135, + 117, + 157, + 252, + 67, + 85, + 240, + 121, + 244 ] } }, @@ -227,38 +227,38 @@ Response: { "Vector": [ { "Address": [ - 147, - 80, - 56, - 94, - 196, - 219, - 69, + 241, + 159, + 198, + 5, + 67, + 13, + 243, + 161, 255, - 108, - 11, - 82, - 234, - 181, - 174, - 32, - 45, - 160, - 129, - 40, - 102, - 104, + 159, + 113, + 200, + 60, + 138, + 184, + 152, + 23, + 26, + 109, + 213, + 78, 73, - 146, - 209, - 143, - 102, - 228, - 61, - 103, - 79, - 99, - 143 + 207, + 135, + 117, + 157, + 252, + 67, + 85, + 240, + 121, + 244 ] } ] @@ -325,15 +325,15 @@ Response: { ] }, "json": { - "id": "0x9350385ec4db45ff6c0b52eab5ae202da0812866684992d18f66e43d674f638f", - "f0": "0x9350385ec4db45ff6c0b52eab5ae202da0812866684992d18f66e43d674f638f", + "id": "0xf19fc605430df3a1ff9f71c83c8ab898171a6dd54e49cf87759dfc4355f079f4", + "f0": "0xf19fc605430df3a1ff9f71c83c8ab898171a6dd54e49cf87759dfc4355f079f4", "f1": true, "f2": 42, "f3": "43", "f4": "hello", "f5": "world", "f6": [ - "0x9350385ec4db45ff6c0b52eab5ae202da0812866684992d18f66e43d674f638f" + "0xf19fc605430df3a1ff9f71c83c8ab898171a6dd54e49cf87759dfc4355f079f4" ], "f7": 44, "f8": { diff --git a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp index 78f0707b26c..de7ec399151 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp @@ -21,7 +21,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 4, lines 16-18: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [49, 170, 24, 91, 48, 51, 59, 190, 186, 64, 208, 42, 198, 226, 201, 28, 175, 76, 24, 236, 175, 216, 35, 217, 155, 5, 253, 225, 16, 3, 242, 32, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [195, 31, 89, 68, 25, 110, 110, 130, 15, 151, 96, 218, 107, 188, 216, 30, 11, 194, 226, 183, 85, 68, 74, 206, 105, 101, 238, 219, 200, 86, 235, 41, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) @@ -134,7 +134,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } } } @@ -145,7 +145,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } } } @@ -156,7 +156,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } } } @@ -167,7 +167,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<0x0000000000000000000000000000000000000000000000000000000000000002::object::ID,address>" } } } @@ -211,7 +211,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000002::random::RandomInner>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" } } } @@ -233,7 +233,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::display::Display<0x000000000000000000000000000000000000000000000000000000000000107a::nft::Nft>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000002::random::RandomInner>" } } } @@ -244,7 +244,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::display::Display<0x000000000000000000000000000000000000000000000000000000000000107a::nft::Nft>" } } } @@ -255,7 +255,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<0x0000000000000000000000000000000000000000000000000000000000000002::object::ID,address>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" } } } @@ -277,7 +277,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } } } @@ -299,7 +299,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp index 9408867f056..de39fe4966e 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp @@ -48,19 +48,19 @@ Response: { "objects": { "edges": [ { - "cursor": "IAtX50fqxe9lE/0KbsFXzRXYkmqZSXFONhH8fIQOkY79AQAAAAAAAAA=" + "cursor": "ICX6kO+NNdmV03GzieZuGXzdkz+yg2KHaSvmj6Hj8cWQAQAAAAAAAAA=" }, { - "cursor": "IBRvcym3o3lAi+fkn+rKvWhxII5VBEmbPN3EvfzcjW6xAQAAAAAAAAA=" + "cursor": "ICcBl0AEG48NrzqwFJFwHglDQW+MRDKuK74gJ80F1+GKAQAAAAAAAAA=" }, { - "cursor": "IGlwdnMK4Q5cUYCFiQuJjb9C6sq6CBnmSM4Cv6f4JPFHAQAAAAAAAAA=" + "cursor": "IE4/Lyl0XVh6bwwhkTUUyvxap8fCENmJqp+D2LL89/cbAQAAAAAAAAA=" }, { - "cursor": "IHjvmz1Xhf4Pu+w59JIFoXHQq7nzrlx62fyrVNQbyGUBAQAAAAAAAAA=" + "cursor": "IGtvShjRsIhJv1W8PSE/adgtP+dt7GI5Vnhu+Ivd+98zAQAAAAAAAAA=" }, { - "cursor": "IOziwiP8CYItF9V8oDdjwywGT6P6iY8ubkh4SRbhG5MxAQAAAAAAAAA=" + "cursor": "IKv5yJhwXba9C470obT7zLqZWUScIDaHFAY9hpMrT1KWAQAAAAAAAAA=" } ] } @@ -76,10 +76,10 @@ Response: { "objects": { "edges": [ { - "cursor": "IAtX50fqxe9lE/0KbsFXzRXYkmqZSXFONhH8fIQOkY79AQAAAAAAAAA=" + "cursor": "ICX6kO+NNdmV03GzieZuGXzdkz+yg2KHaSvmj6Hj8cWQAQAAAAAAAAA=" }, { - "cursor": "IBRvcym3o3lAi+fkn+rKvWhxII5VBEmbPN3EvfzcjW6xAQAAAAAAAAA=" + "cursor": "ICcBl0AEG48NrzqwFJFwHglDQW+MRDKuK74gJ80F1+GKAQAAAAAAAAA=" } ] } @@ -95,52 +95,52 @@ Response: { "objects": { "edges": [ { - "cursor": "IAtX50fqxe9lE/0KbsFXzRXYkmqZSXFONhH8fIQOkY79AQAAAAAAAAA=", + "cursor": "ICX6kO+NNdmV03GzieZuGXzdkz+yg2KHaSvmj6Hj8cWQAQAAAAAAAAA=", "node": { - "address": "0x0b57e747eac5ef6513fd0a6ec157cd15d8926a9949714e3611fc7c840e918efd" + "address": "0x25fa90ef8d35d995d371b389e66e197cdd933fb2836287692be68fa1e3f1c590" } }, { - "cursor": "IBRvcym3o3lAi+fkn+rKvWhxII5VBEmbPN3EvfzcjW6xAQAAAAAAAAA=", + "cursor": "ICcBl0AEG48NrzqwFJFwHglDQW+MRDKuK74gJ80F1+GKAQAAAAAAAAA=", "node": { - "address": "0x146f7329b7a379408be7e49feacabd6871208e5504499b3cddc4bdfcdc8d6eb1" + "address": "0x27019740041b8f0daf3ab01491701e0943416f8c4432ae2bbe2027cd05d7e18a" } }, { - "cursor": "IGlwdnMK4Q5cUYCFiQuJjb9C6sq6CBnmSM4Cv6f4JPFHAQAAAAAAAAA=", + "cursor": "IE4/Lyl0XVh6bwwhkTUUyvxap8fCENmJqp+D2LL89/cbAQAAAAAAAAA=", "node": { - "address": "0x697076730ae10e5c518085890b898dbf42eacaba0819e648ce02bfa7f824f147" + "address": "0x4e3f2f29745d587a6f0c21913514cafc5aa7c7c210d989aa9f83d8b2fcf7f71b" } }, { - "cursor": "IHjvmz1Xhf4Pu+w59JIFoXHQq7nzrlx62fyrVNQbyGUBAQAAAAAAAAA=", + "cursor": "IGtvShjRsIhJv1W8PSE/adgtP+dt7GI5Vnhu+Ivd+98zAQAAAAAAAAA=", "node": { - "address": "0x78ef9b3d5785fe0fbbec39f49205a171d0abb9f3ae5c7ad9fcab54d41bc86501" + "address": "0x6b6f4a18d1b08849bf55bc3d213f69d82d3fe76dec623956786ef88bddfbdf33" } }, { - "cursor": "IOziwiP8CYItF9V8oDdjwywGT6P6iY8ubkh4SRbhG5MxAQAAAAAAAAA=", + "cursor": "IKv5yJhwXba9C470obT7zLqZWUScIDaHFAY9hpMrT1KWAQAAAAAAAAA=", "node": { - "address": "0xece2c223fc09822d17d57ca03763c32c064fa3fa898f2e6e48784916e11b9331" + "address": "0xabf9c898705db6bd0b8ef4a1b4fbccba9959449c20368714063d86932b4f5296" } } ] } }, "obj_3_0": { - "address": "0x697076730ae10e5c518085890b898dbf42eacaba0819e648ce02bfa7f824f147" + "address": "0x25fa90ef8d35d995d371b389e66e197cdd933fb2836287692be68fa1e3f1c590" }, "obj_5_0": { - "address": "0x0b57e747eac5ef6513fd0a6ec157cd15d8926a9949714e3611fc7c840e918efd" + "address": "0x6b6f4a18d1b08849bf55bc3d213f69d82d3fe76dec623956786ef88bddfbdf33" }, "obj_6_0": { - "address": "0x146f7329b7a379408be7e49feacabd6871208e5504499b3cddc4bdfcdc8d6eb1" + "address": "0x4e3f2f29745d587a6f0c21913514cafc5aa7c7c210d989aa9f83d8b2fcf7f71b" }, "obj_4_0": { - "address": "0x78ef9b3d5785fe0fbbec39f49205a171d0abb9f3ae5c7ad9fcab54d41bc86501" + "address": "0xabf9c898705db6bd0b8ef4a1b4fbccba9959449c20368714063d86932b4f5296" }, "obj_2_0": { - "address": "0xece2c223fc09822d17d57ca03763c32c064fa3fa898f2e6e48784916e11b9331" + "address": "0x27019740041b8f0daf3ab01491701e0943416f8c4432ae2bbe2027cd05d7e18a" } } } @@ -153,10 +153,7 @@ Response: { "objects": { "edges": [ { - "cursor": "IBRvcym3o3lAi+fkn+rKvWhxII5VBEmbPN3EvfzcjW6xAQAAAAAAAAA=" - }, - { - "cursor": "IGlwdnMK4Q5cUYCFiQuJjb9C6sq6CBnmSM4Cv6f4JPFHAQAAAAAAAAA=" + "cursor": "IKv5yJhwXba9C470obT7zLqZWUScIDaHFAY9hpMrT1KWAQAAAAAAAAA=" } ] } @@ -170,11 +167,7 @@ Response: { "data": { "address": { "objects": { - "edges": [ - { - "cursor": "IOziwiP8CYItF9V8oDdjwywGT6P6iY8ubkh4SRbhG5MxAQAAAAAAAAA=" - } - ] + "edges": [] } } } @@ -186,14 +179,7 @@ Response: { "data": { "address": { "objects": { - "edges": [ - { - "cursor": "IAtX50fqxe9lE/0KbsFXzRXYkmqZSXFONhH8fIQOkY79AQAAAAAAAAA=" - }, - { - "cursor": "IBRvcym3o3lAi+fkn+rKvWhxII5VBEmbPN3EvfzcjW6xAQAAAAAAAAA=" - } - ] + "edges": [] } } } @@ -207,15 +193,15 @@ Response: { "objects": { "edges": [ { - "cursor": "IHjvmz1Xhf4Pu+w59JIFoXHQq7nzrlx62fyrVNQbyGUBAQAAAAAAAAA=", + "cursor": "IGtvShjRsIhJv1W8PSE/adgtP+dt7GI5Vnhu+Ivd+98zAQAAAAAAAAA=", "node": { - "address": "0x78ef9b3d5785fe0fbbec39f49205a171d0abb9f3ae5c7ad9fcab54d41bc86501" + "address": "0x6b6f4a18d1b08849bf55bc3d213f69d82d3fe76dec623956786ef88bddfbdf33" } }, { - "cursor": "IOziwiP8CYItF9V8oDdjwywGT6P6iY8ubkh4SRbhG5MxAQAAAAAAAAA=", + "cursor": "IKv5yJhwXba9C470obT7zLqZWUScIDaHFAY9hpMrT1KWAQAAAAAAAAA=", "node": { - "address": "0xece2c223fc09822d17d57ca03763c32c064fa3fa898f2e6e48784916e11b9331" + "address": "0xabf9c898705db6bd0b8ef4a1b4fbccba9959449c20368714063d86932b4f5296" } } ] diff --git a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp index 3bccffd887a..a8490459adb 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp @@ -37,10 +37,10 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x9d880ed4fdb36fbc885a556e5ea55eb8338e56ea2185689d8491e8aa4bc3edfa::m::Bar" } }, - "hasPublicTransfer": true + "hasPublicTransfer": false } } }, @@ -49,7 +49,7 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x5dcee5041fc8e936ebc590c5d365907985d08aa45f3dc1bca8037f55e99ca26f::m::Foo" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" } }, "hasPublicTransfer": true @@ -61,10 +61,10 @@ Response: { "asMoveObject": { "contents": { "type": { - "repr": "0x5dcee5041fc8e936ebc590c5d365907985d08aa45f3dc1bca8037f55e99ca26f::m::Bar" + "repr": "0x9d880ed4fdb36fbc885a556e5ea55eb8338e56ea2185689d8491e8aa4bc3edfa::m::Foo" } }, - "hasPublicTransfer": false + "hasPublicTransfer": true } } } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/received.exp b/crates/iota-graphql-e2e-tests/tests/objects/received.exp index 0c8a9df3c9e..d1a09dc0ea4 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/received.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/received.exp @@ -30,7 +30,7 @@ Response: { "receivedTransactionBlocks": { "nodes": [ { - "digest": "BAZTCk2JAbyY6xeVB9at1omTbUsCDJdNh9ssAHs3ZhRf" + "digest": "EPHB9RW1dJTokQN6tKjwSW195zW6XH2k2mbdMUu431aP" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp index 9ef24437142..2f83f2c4c24 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp @@ -10,7 +10,7 @@ Response: { "objects": { "edges": [ { - "cursor": "IBLNnwcEO5XjKkP6B2QL5vf9fi98WuQ9957HYs8/UvpIAAAAAAAAAAA=", + "cursor": "IIKDDWMJEQ0SaqegqoUwd4Tud0KewlpG9UzxKvz4b+AFAAAAAAAAAAA=", "node": { "asMoveObject": { "asStakedIota": { @@ -39,7 +39,7 @@ gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: task 3, line 38: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C -events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [49, 170, 24, 91, 48, 51, 59, 190, 186, 64, 208, 42, 198, 226, 201, 28, 175, 76, 24, 236, 175, 216, 35, 217, 155, 5, 253, 225, 16, 3, 242, 32, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } +events: Event { package_id: iota_system, transaction_module: Identifier("iota_system"), sender: C, type_: StructTag { address: iota_system, module: Identifier("validator"), name: Identifier("StakingRequestEvent"), type_params: [] }, contents: [195, 31, 89, 68, 25, 110, 110, 130, 15, 151, 96, 218, 107, 188, 216, 30, 11, 194, 226, 183, 85, 68, 74, 206, 105, 101, 238, 219, 200, 86, 235, 41, 175, 163, 158, 79, 0, 218, 226, 120, 249, 119, 199, 198, 147, 10, 94, 44, 118, 232, 93, 23, 165, 38, 215, 36, 187, 206, 15, 184, 31, 176, 125, 76, 140, 202, 78, 28, 224, 186, 89, 4, 206, 166, 29, 249, 36, 45, 162, 247, 210, 158, 62, 243, 40, 251, 126, 192, 124, 8, 107, 59, 244, 124, 166, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 11, 84, 2, 0, 0, 0] } created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) @@ -60,23 +60,23 @@ Response: { "objects": { "edges": [ { - "cursor": "IBLNnwcEO5XjKkP6B2QL5vf9fi98WuQ9957HYs8/UvpIAgAAAAAAAAA=", + "cursor": "ICzSs8gJrEchdo/v0DdIPKJpx37IypILVMI4TvKng3QUAgAAAAAAAAA=", "node": { "asMoveObject": { "asStakedIota": { - "principal": "1500000000000000", - "poolId": "0x31aa185b30333bbeba40d02ac6e2c91caf4c18ecafd823d99b05fde11003f220" + "principal": "10000000000", + "poolId": "0xc31f5944196e6e820f9760da6bbcd81e0bc2e2b755444ace6965eedbc856eb29" } } } }, { - "cursor": "IJrDd+d17c/WP+y988FjFenwhf7ri3M2an2ad/goKgRVAgAAAAAAAAA=", + "cursor": "IIKDDWMJEQ0SaqegqoUwd4Tud0KewlpG9UzxKvz4b+AFAgAAAAAAAAA=", "node": { "asMoveObject": { "asStakedIota": { - "principal": "10000000000", - "poolId": "0x31aa185b30333bbeba40d02ac6e2c91caf4c18ecafd823d99b05fde11003f220" + "principal": "1500000000000000", + "poolId": "0xc31f5944196e6e820f9760da6bbcd81e0bc2e2b755444ace6965eedbc856eb29" } } } @@ -87,7 +87,7 @@ Response: { "asMoveObject": { "asStakedIota": { "principal": "15340000000000", - "poolId": "0x31aa185b30333bbeba40d02ac6e2c91caf4c18ecafd823d99b05fde11003f220" + "poolId": "0xc31f5944196e6e820f9760da6bbcd81e0bc2e2b755444ace6965eedbc856eb29" } } } @@ -98,7 +98,7 @@ Response: { "stakedIotas": { "edges": [ { - "cursor": "IJrDd+d17c/WP+y988FjFenwhf7ri3M2an2ad/goKgRVAgAAAAAAAAA=", + "cursor": "ICzSs8gJrEchdo/v0DdIPKJpx37IypILVMI4TvKng3QUAgAAAAAAAAA=", "node": { "principal": "10000000000" } diff --git a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp index 8915e0f2ce5..db71fb7324c 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp @@ -24,7 +24,7 @@ Response: { }, "coin": { "asObject": { - "digest": "F5pMFJHFfoyuckenh5qe7yptCoBunxbsDMUVNNRsgU8m" + "digest": "EXVziRUtN3mS4Gx9G7eHaJAQLXGQJYAwdBRHe84LpMm7" } } } diff --git a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp index 7a8f597a16f..867a6027734 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp @@ -124,10 +124,10 @@ Response: { "version": 11, "contents": { "json": { - "id": "0xc374926b5d391cee2278e6aefc98d755f034e23f43ae8bc811ddd837f57c0834", + "id": "0x971c6d1b7d6d10a43dadfdbde2206f93bed3cdab43ec430928655906a9ddbe98", "count": "1", "wrapped": { - "id": "0x852263eb4f91d23603f98dba1ed525bef9900a133e6be9bf129fd3a65bc0d89f", + "id": "0xe1eb5deedaf409a49832c729642cdca5162af91de4d45340965494a12cd733ce", "count": "1" } } @@ -141,10 +141,10 @@ Response: { "version": 10, "contents": { "json": { - "id": "0xc374926b5d391cee2278e6aefc98d755f034e23f43ae8bc811ddd837f57c0834", + "id": "0x971c6d1b7d6d10a43dadfdbde2206f93bed3cdab43ec430928655906a9ddbe98", "count": "1", "wrapped": { - "id": "0x852263eb4f91d23603f98dba1ed525bef9900a133e6be9bf129fd3a65bc0d89f", + "id": "0xe1eb5deedaf409a49832c729642cdca5162af91de4d45340965494a12cd733ce", "count": "1" } } @@ -158,10 +158,10 @@ Response: { "version": 8, "contents": { "json": { - "id": "0xc374926b5d391cee2278e6aefc98d755f034e23f43ae8bc811ddd837f57c0834", + "id": "0x971c6d1b7d6d10a43dadfdbde2206f93bed3cdab43ec430928655906a9ddbe98", "count": "1", "wrapped": { - "id": "0x852263eb4f91d23603f98dba1ed525bef9900a133e6be9bf129fd3a65bc0d89f", + "id": "0xe1eb5deedaf409a49832c729642cdca5162af91de4d45340965494a12cd733ce", "count": "0" } } @@ -175,10 +175,10 @@ Response: { "version": 7, "contents": { "json": { - "id": "0xc374926b5d391cee2278e6aefc98d755f034e23f43ae8bc811ddd837f57c0834", + "id": "0x971c6d1b7d6d10a43dadfdbde2206f93bed3cdab43ec430928655906a9ddbe98", "count": "0", "wrapped": { - "id": "0x852263eb4f91d23603f98dba1ed525bef9900a133e6be9bf129fd3a65bc0d89f", + "id": "0xe1eb5deedaf409a49832c729642cdca5162af91de4d45340965494a12cd733ce", "count": "0" } } @@ -199,7 +199,7 @@ Response: { "version": 7, "contents": { "json": { - "id": "0x7d6ea332b2a20736990c5f5bc557678aed0657be6f097be3c7e96861480ecc87", + "id": "0xfa4c9f80c82ecccd704a91074f7b4fbda300530a4ed604b63d48bc1372bbc6eb", "count": "0" } } @@ -212,7 +212,7 @@ Response: { "version": 10, "contents": { "json": { - "id": "0x7d6ea332b2a20736990c5f5bc557678aed0657be6f097be3c7e96861480ecc87", + "id": "0xfa4c9f80c82ecccd704a91074f7b4fbda300530a4ed604b63d48bc1372bbc6eb", "count": "1" } } @@ -225,7 +225,7 @@ Response: { "version": 10, "contents": { "json": { - "id": "0x7d6ea332b2a20736990c5f5bc557678aed0657be6f097be3c7e96861480ecc87", + "id": "0xfa4c9f80c82ecccd704a91074f7b4fbda300530a4ed604b63d48bc1372bbc6eb", "count": "1" } } @@ -238,7 +238,7 @@ Response: { "version": 7, "contents": { "json": { - "id": "0x7d6ea332b2a20736990c5f5bc557678aed0657be6f097be3c7e96861480ecc87", + "id": "0xfa4c9f80c82ecccd704a91074f7b4fbda300530a4ed604b63d48bc1372bbc6eb", "count": "0" } } @@ -251,7 +251,7 @@ Response: { "version": 7, "contents": { "json": { - "id": "0x7d6ea332b2a20736990c5f5bc557678aed0657be6f097be3c7e96861480ecc87", + "id": "0xfa4c9f80c82ecccd704a91074f7b4fbda300530a4ed604b63d48bc1372bbc6eb", "count": "0" } } @@ -271,7 +271,7 @@ Response: { "version": 7, "contents": { "json": { - "id": "0x1dce31614e17c87100fd146b73be1922d4821428c46093aa185b1f2d0dd114ae", + "id": "0xe8ad127dd2eb2208688202ea18b0fba19658fc0c599362bdfa36ef248f0e4fb4", "count": "0" } } @@ -284,7 +284,7 @@ Response: { "version": 11, "contents": { "json": { - "id": "0x1dce31614e17c87100fd146b73be1922d4821428c46093aa185b1f2d0dd114ae", + "id": "0xe8ad127dd2eb2208688202ea18b0fba19658fc0c599362bdfa36ef248f0e4fb4", "count": "1" } } @@ -297,7 +297,7 @@ Response: { "version": 7, "contents": { "json": { - "id": "0x1dce31614e17c87100fd146b73be1922d4821428c46093aa185b1f2d0dd114ae", + "id": "0xe8ad127dd2eb2208688202ea18b0fba19658fc0c599362bdfa36ef248f0e4fb4", "count": "0" } } diff --git a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp index b29280f5ce9..cc1dc1e78cc 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp @@ -155,7 +155,7 @@ task 5, lines 73-97: Response: { "data": { "object": { - "address": "0x65709604481ff7591f5646fedf7f32220cfedf5f65fa4f5ec6da2381b74ccccf", + "address": "0x7b13955059d4b6b30f9643432301fef8f5bcc27d87dcc0fc7ae067f1486e41f8", "asMovePackage": { "module": { "datatypes": { @@ -190,7 +190,7 @@ task 6, lines 99-144: Response: { "data": { "object": { - "address": "0x65709604481ff7591f5646fedf7f32220cfedf5f65fa4f5ec6da2381b74ccccf", + "address": "0x7b13955059d4b6b30f9643432301fef8f5bcc27d87dcc0fc7ae067f1486e41f8", "asMovePackage": { "module": { "datatypes": { diff --git a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp index 64b21a90c2f..07315f0899c 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp @@ -25,13 +25,13 @@ Response: { "nodes": [ { "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "asMovePackage": null } }, { "outputState": { - "address": "0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6", + "address": "0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211", "asMovePackage": { "module": { "enum": { @@ -90,7 +90,7 @@ Response: { }, { "outputState": { - "address": "0xf88d487a6ff809b197de42319d922601100d08be653a910f0908c6ca17f31571", + "address": "0x961298822ba41c38483a9bf76b28faaa4892649f91c67bd6030b54511723b8bf", "asMovePackage": null } } @@ -125,13 +125,19 @@ Response: { "nodes": [ { "outputState": { - "address": "0x80c62b9fc2009929e7c442831a2288f7562424367d8e9b514aa2a8622028a7b6", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "asMovePackage": null + } + }, + { + "outputState": { + "address": "0x6606d773cbd440d344afaad70995ae878932157ceae72f6a3c07550467175d82", "asMovePackage": { "module": { "s": { "module": { "package": { - "address": "0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6" + "address": "0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211" } }, "name": "S", @@ -186,7 +192,7 @@ Response: { "t": { "module": { "package": { - "address": "0x80c62b9fc2009929e7c442831a2288f7562424367d8e9b514aa2a8622028a7b6" + "address": "0x6606d773cbd440d344afaad70995ae878932157ceae72f6a3c07550467175d82" } }, "name": "T", @@ -216,12 +222,12 @@ Response: { { "name": "s", "type": { - "repr": "0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6::m::S", + "repr": "0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211::m::S", "signature": { "ref": null, "body": { "datatype": { - "package": "0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6", + "package": "0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211", "module": "m", "type": "S", "typeParameters": [] @@ -255,7 +261,7 @@ Response: { { "name": "t", "type": { - "repr": "0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6::m::T<0xf510c03759c677b311142f8dd9186f96a45753a56f38ec9fd0c1f0eeb247f6f6::m::S>" + "repr": "0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211::m::T<0x76e7ff71302c8573d647fb6c1e7b72f8ff0552079062eee661c42d33fe843211::m::S>" } } ] @@ -268,13 +274,7 @@ Response: { }, { "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "asMovePackage": null - } - }, - { - "outputState": { - "address": "0xf88d487a6ff809b197de42319d922601100d08be653a910f0908c6ca17f31571", + "address": "0x961298822ba41c38483a9bf76b28faaa4892649f91c67bd6030b54511723b8bf", "asMovePackage": null } } @@ -297,6 +297,11 @@ Response: { "effects": { "objectChanges": { "nodes": [ + { + "outputState": { + "asMovePackage": null + } + }, { "outputState": { "asMovePackage": { @@ -317,11 +322,6 @@ Response: { } } }, - { - "outputState": { - "asMovePackage": null - } - }, { "outputState": { "asMovePackage": null diff --git a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp index cb7b52044b7..a1b40d7f362 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp @@ -23,11 +23,6 @@ Response: { "effects": { "objectChanges": { "nodes": [ - { - "outputState": { - "asMovePackage": null - } - }, { "outputState": { "asMovePackage": { @@ -102,6 +97,11 @@ Response: { } } }, + { + "outputState": { + "asMovePackage": null + } + }, { "outputState": { "asMovePackage": null @@ -128,14 +128,14 @@ Response: { "nodes": [ { "outputState": { - "asMovePackage": null + "asMovePackage": { + "module": null + } } }, { "outputState": { - "asMovePackage": { - "module": null - } + "asMovePackage": null } }, { @@ -166,7 +166,7 @@ Response: { "effects", "objectChanges", "nodes", - 1, + 0, "outputState", "asMovePackage", "module", @@ -189,11 +189,6 @@ Response: { "effects": { "objectChanges": { "nodes": [ - { - "outputState": { - "asMovePackage": null - } - }, { "outputState": { "asMovePackage": { @@ -270,6 +265,11 @@ Response: { } } }, + { + "outputState": { + "asMovePackage": null + } + }, { "outputState": { "asMovePackage": null diff --git a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp index abe7fc4ce90..e2f843e9272 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp @@ -95,25 +95,19 @@ Response: { "nodes": [ { "outputState": { - "address": "0x0779d943f70351d8db98bc5b471eef69dec64d8b060eff851fa92357264c81cb", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "asMovePackage": null } }, { "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "asMovePackage": null - } - }, - { - "outputState": { - "address": "0xf54e25e49a2d5dccfedaed2ebf341e48bc8141704a0b53b84ff7fd0a576d9bee", + "address": "0x8279e1e8a30dc799b6c3cd8482321111defcba714eaa185808396fdb8462e758", "asMovePackage": { "module": { "function": { "module": { "package": { - "address": "0xf54e25e49a2d5dccfedaed2ebf341e48bc8141704a0b53b84ff7fd0a576d9bee" + "address": "0x8279e1e8a30dc799b6c3cd8482321111defcba714eaa185808396fdb8462e758" } }, "name": "f", @@ -143,6 +137,12 @@ Response: { } } } + }, + { + "outputState": { + "address": "0xa136f167f12fbf24760882e6b239f6b13e0670bd451476d11382f4a89da6a5b9", + "asMovePackage": null + } } ] } @@ -175,19 +175,25 @@ Response: { "nodes": [ { "outputState": { - "address": "0x0779d943f70351d8db98bc5b471eef69dec64d8b060eff851fa92357264c81cb", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "asMovePackage": null } }, { "outputState": { - "address": "0x5e5f7f19ed6029cce7c55f0b2e5e5c0d1a6908205d5cb72035de74e822917c8b", + "address": "0xa136f167f12fbf24760882e6b239f6b13e0670bd451476d11382f4a89da6a5b9", + "asMovePackage": null + } + }, + { + "outputState": { + "address": "0xe886932731b9ae676f7ae5fca52870cb50d437c9061864923d850659ce3d88f8", "asMovePackage": { "module": { "f": { "module": { "package": { - "address": "0x5e5f7f19ed6029cce7c55f0b2e5e5c0d1a6908205d5cb72035de74e822917c8b" + "address": "0xe886932731b9ae676f7ae5fca52870cb50d437c9061864923d850659ce3d88f8" } }, "name": "f", @@ -217,7 +223,7 @@ Response: { "g": { "module": { "package": { - "address": "0x5e5f7f19ed6029cce7c55f0b2e5e5c0d1a6908205d5cb72035de74e822917c8b" + "address": "0xe886932731b9ae676f7ae5fca52870cb50d437c9061864923d850659ce3d88f8" } }, "name": "g", @@ -234,12 +240,6 @@ Response: { } } } - }, - { - "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "asMovePackage": null - } } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp index 48ed63cb785..0c3e5a60167 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp @@ -22,25 +22,25 @@ Response: { "nodes": [ { "outputState": { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", - "asMovePackage": null - } - }, - { - "outputState": { - "address": "0xdbd3bc7c79bf4076dbe2ee9e0ba66ff1dfc6e5fab8d651c9349be0bf915f4f88", + "address": "0x1cacf510a5ca4b4dbaf6caac35f867f1ef03bfbe2b96adc112933cc937c94989", "asMovePackage": { "module": { "name": "m", "package": { - "address": "0xdbd3bc7c79bf4076dbe2ee9e0ba66ff1dfc6e5fab8d651c9349be0bf915f4f88" + "address": "0x1cacf510a5ca4b4dbaf6caac35f867f1ef03bfbe2b96adc112933cc937c94989" }, "fileFormatVersion": 6, - "bytes": "oRzrCwYAAAAIAQAGAgYKAxARBCEEBSUfB0QkCGhADKgBMAAGAQMBBQEADAEAAQIBAgAABAABAQIAAgIBAAEHBQEBAAIEAAYCAwYLAAEJAAEDAQYLAAEIAQABCQABBgsAAQkAAQgBBENvaW4ESU9UQQNiYXIEY29pbgNmb28EaW90YQFtBXZhbHVl29O8fHm/QHbb4u6eC6Zv8d/G5fq41lHJNJvgv5FfT4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgABAAADBQsBOAALABYCAQEAAAMIBioAAAAAAAAACgA4AQYrAAAAAAAAAAsAOAEYAgA=", - "disassembly": "// Move bytecode v6\nmodule dbd3bc7c79bf4076dbe2ee9e0ba66ff1dfc6e5fab8d651c9349be0bf915f4f88.m {\nuse 0000000000000000000000000000000000000000000000000000000000000002::coin;\nuse 0000000000000000000000000000000000000000000000000000000000000002::iota;\n\n\n\n\n\n\npublic foo<Ty0: drop>(Arg0: u64, Arg1: &Coin<Ty0>): u64 {\nB0:\n\t0: MoveLoc[1](Arg1: &Coin<Ty0>)\n\t1: Call coin::value<Ty0>(&Coin<Ty0>): u64\n\t2: MoveLoc[0](Arg0: u64)\n\t3: Add\n\t4: Ret\n\n}\npublic bar(Arg0: &Coin<IOTA>): u64 {\nB0:\n\t0: LdU64(42)\n\t1: CopyLoc[0](Arg0: &Coin<IOTA>)\n\t2: Call foo<IOTA>(u64, &Coin<IOTA>): u64\n\t3: LdU64(43)\n\t4: MoveLoc[0](Arg0: &Coin<IOTA>)\n\t5: Call foo<IOTA>(u64, &Coin<IOTA>): u64\n\t6: Mul\n\t7: Ret\n\n}\n}" + "bytes": "oRzrCwYAAAAIAQAGAgYKAxARBCEEBSUfB0QkCGhADKgBMAAGAQMBBQEADAEAAQIBAgAABAABAQIAAgIBAAEHBQEBAAIEAAYCAwYLAAEJAAEDAQYLAAEIAQABCQABBgsAAQkAAQgBBENvaW4ESU9UQQNiYXIEY29pbgNmb28EaW90YQFtBXZhbHVlHKz1EKXKS0269sqsNfhn8e8Dv74rlq3BEpM8yTfJSYkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgABAAADBQsBOAALABYCAQEAAAMIBioAAAAAAAAACgA4AQYrAAAAAAAAAAsAOAEYAgA=", + "disassembly": "// Move bytecode v6\nmodule 1cacf510a5ca4b4dbaf6caac35f867f1ef03bfbe2b96adc112933cc937c94989.m {\nuse 0000000000000000000000000000000000000000000000000000000000000002::coin;\nuse 0000000000000000000000000000000000000000000000000000000000000002::iota;\n\n\n\n\n\n\npublic foo<Ty0: drop>(Arg0: u64, Arg1: &Coin<Ty0>): u64 {\nB0:\n\t0: MoveLoc[1](Arg1: &Coin<Ty0>)\n\t1: Call coin::value<Ty0>(&Coin<Ty0>): u64\n\t2: MoveLoc[0](Arg0: u64)\n\t3: Add\n\t4: Ret\n\n}\npublic bar(Arg0: &Coin<IOTA>): u64 {\nB0:\n\t0: LdU64(42)\n\t1: CopyLoc[0](Arg0: &Coin<IOTA>)\n\t2: Call foo<IOTA>(u64, &Coin<IOTA>): u64\n\t3: LdU64(43)\n\t4: MoveLoc[0](Arg0: &Coin<IOTA>)\n\t5: Call foo<IOTA>(u64, &Coin<IOTA>): u64\n\t6: Mul\n\t7: Ret\n\n}\n}" } } } + }, + { + "outputState": { + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", + "asMovePackage": null + } } ] } @@ -63,13 +63,7 @@ Response: { "nodes": [ { "outputState": { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", - "asMovePackage": null - } - }, - { - "outputState": { - "address": "0xdbd3bc7c79bf4076dbe2ee9e0ba66ff1dfc6e5fab8d651c9349be0bf915f4f88", + "address": "0x1cacf510a5ca4b4dbaf6caac35f867f1ef03bfbe2b96adc112933cc937c94989", "asMovePackage": { "all": { "edges": [ @@ -139,6 +133,12 @@ Response: { } } } + }, + { + "outputState": { + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", + "asMovePackage": null + } } ] } @@ -161,13 +161,7 @@ Response: { "nodes": [ { "outputState": { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", - "asMovePackage": null - } - }, - { - "outputState": { - "address": "0xdbd3bc7c79bf4076dbe2ee9e0ba66ff1dfc6e5fab8d651c9349be0bf915f4f88", + "address": "0x1cacf510a5ca4b4dbaf6caac35f867f1ef03bfbe2b96adc112933cc937c94989", "asMovePackage": { "prefix": { "edges": [ @@ -279,6 +273,12 @@ Response: { } } } + }, + { + "outputState": { + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", + "asMovePackage": null + } } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp index 614699e2670..ac930953794 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp @@ -154,13 +154,13 @@ Response: { "nodes": [ { "outputState": { - "address": "0x2f70f434dedbef6ca04cdff83afde4631684ccb6846780382d45ae301630d74e", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "asMovePackage": null } }, { "outputState": { - "address": "0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae", + "address": "0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9", "asMovePackage": { "module": { "struct": { @@ -189,7 +189,7 @@ Response: { }, { "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", + "address": "0x9e4e458b26d85fe8b20d64dcc355957b0eed1b0c673db96021ca7c6f5fc3b63a", "asMovePackage": null } } @@ -224,19 +224,25 @@ Response: { "nodes": [ { "outputState": { - "address": "0x2f70f434dedbef6ca04cdff83afde4631684ccb6846780382d45ae301630d74e", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "asMovePackage": null } }, { "outputState": { - "address": "0xa5fc6cbb49375fc5e27a7a8cb9ddd211ec180a3693c0ab9030fa00c4f4ea2e89", + "address": "0x9e4e458b26d85fe8b20d64dcc355957b0eed1b0c673db96021ca7c6f5fc3b63a", + "asMovePackage": null + } + }, + { + "outputState": { + "address": "0xbed2a127422bc7a1f96de75b6e9c668e7a1e4f866e729882bb174e89c6719600", "asMovePackage": { "module": { "s": { "module": { "package": { - "address": "0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae" + "address": "0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9" } }, "name": "S", @@ -261,7 +267,7 @@ Response: { "t": { "module": { "package": { - "address": "0xa5fc6cbb49375fc5e27a7a8cb9ddd211ec180a3693c0ab9030fa00c4f4ea2e89" + "address": "0xbed2a127422bc7a1f96de75b6e9c668e7a1e4f866e729882bb174e89c6719600" } }, "name": "T", @@ -288,12 +294,12 @@ Response: { { "name": "s", "type": { - "repr": "0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae::m::S", + "repr": "0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9::m::S", "signature": { "ref": null, "body": { "datatype": { - "package": "0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae", + "package": "0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9", "module": "m", "type": "S", "typeParameters": [] @@ -322,7 +328,7 @@ Response: { { "name": "t", "type": { - "repr": "0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae::m::T<0x6e052faf337b206054b319aff9325298b3b4995c7f30100dc8311f11a0ce23ae::m::S>" + "repr": "0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9::m::T<0x4a05c44de50b6021b0a536d649f1e59b2f25a7597d0e453c18cb62e94ab1b7b9::m::S>" } } ] @@ -330,12 +336,6 @@ Response: { } } } - }, - { - "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "asMovePackage": null - } } ] } @@ -361,6 +361,11 @@ Response: { "asMovePackage": null } }, + { + "outputState": { + "asMovePackage": null + } + }, { "outputState": { "asMovePackage": { @@ -380,11 +385,6 @@ Response: { } } } - }, - { - "outputState": { - "asMovePackage": null - } } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/packages/types.exp b/crates/iota-graphql-e2e-tests/tests/packages/types.exp index 163bafc6a4d..41039c43d50 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/types.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/types.exp @@ -275,7 +275,7 @@ Response: { "data": null, "errors": [ { - "message": "Internal error occurred while processing request: Error calculating layout for 0xbbed0b3b563a8e309c5ab0a82b184846001ab32d2bf4a1c91c4f3090986a72c9::m::S1<u32>: Type layout nesting exceeded limit of 128", + "message": "Internal error occurred while processing request: Error calculating layout for 0x2078ba8cab0588ca9cdb5d8df6068a40d536e173960b16f3e2293064ca820b43::m::S1<u32>: Type layout nesting exceeded limit of 128", "locations": [ { "line": 4, diff --git a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp index ffa4a445d2f..c219f87eea3 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp @@ -31,14 +31,14 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 } ] } }, "firstPackage": { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1, "module": { "functions": { @@ -52,7 +52,7 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 } ] @@ -81,7 +81,7 @@ Response: { "version": 1 }, { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 } ] @@ -120,18 +120,18 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 } ] } }, "firstPackage": { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1, "module": { "functions": { @@ -145,11 +145,11 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 } ] @@ -178,11 +178,11 @@ Response: { "version": 1 }, { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 } ] @@ -224,22 +224,22 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3 } ] } }, "firstPackage": { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1, "module": { "functions": { @@ -253,15 +253,15 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3 } ] @@ -290,15 +290,15 @@ Response: { "version": 1 }, { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3 } ] @@ -715,7 +715,7 @@ Response: { "after": { "nodes": [ { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2, "previousTransactionBlock": { "effects": { @@ -726,7 +726,7 @@ Response: { } }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3, "previousTransactionBlock": { "effects": { @@ -741,7 +741,7 @@ Response: { "between": { "nodes": [ { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2, "previousTransactionBlock": { "effects": { @@ -763,15 +763,15 @@ Response: { "packageVersions": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3 } ] @@ -779,11 +779,11 @@ Response: { "after": { "nodes": [ { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 }, { - "address": "0xc3f4b6e52e370b72878bd7ffbfb4960273e513fff720296dee0edd37bccb93df", + "address": "0x7d48d7397b69b9ba14544b8d404b31a2d190ad6a768c533a5c196255548e0e14", "version": 3 } ] @@ -791,11 +791,11 @@ Response: { "before": { "nodes": [ { - "address": "0x6eb579ded8e567baec3f9da4b60fc0aa5772c986cf987f0008b468cfffb61f0d", + "address": "0x8db84be9bbe12f37d038d54aab337fb24f5d81bfe7950c882a69de130e5bd849", "version": 1 }, { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 } ] @@ -803,7 +803,7 @@ Response: { "between": { "nodes": [ { - "address": "0x637516b0223c3af228bcb46fce1710a1280fa9e98e3811d75f1d77acc0eb8be1", + "address": "0x936771e29b3c070de497d8ae8e85b532b5a35dc40d18f99f9bb8ddcef32495ec", "version": 2 } ] diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp index 58869ad01d0..31f232a4fd7 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp @@ -48,13 +48,13 @@ Response: { "edges": [ { "node": { - "amount": "4000" + "amount": "1000" }, "cursor": "eyJpIjowLCJjIjoyfQ" }, { "node": { - "amount": "1000" + "amount": "4000" }, "cursor": "eyJpIjoxLCJjIjoyfQ" }, @@ -66,13 +66,13 @@ Response: { }, { "node": { - "amount": "2000" + "amount": "5000" }, "cursor": "eyJpIjozLCJjIjoyfQ" }, { "node": { - "amount": "5000" + "amount": "2000" }, "cursor": "eyJpIjo0LCJjIjoyfQ" }, @@ -111,13 +111,13 @@ Response: { "edges": [ { "node": { - "amount": "2000" + "amount": "5000" }, "cursor": "eyJpIjozLCJjIjoxfQ" }, { "node": { - "amount": "5000" + "amount": "2000" }, "cursor": "eyJpIjo0LCJjIjoxfQ" } @@ -150,13 +150,13 @@ Response: { "edges": [ { "node": { - "amount": "4000" + "amount": "1000" }, "cursor": "eyJpIjowLCJjIjoxfQ" }, { "node": { - "amount": "1000" + "amount": "4000" }, "cursor": "eyJpIjoxLCJjIjoxfQ" }, diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp index 7a72fca289e..866bde0a891 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp @@ -65,7 +65,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "6Y2wDveP2zgYVNVSyS9DYdCBDE6cmMAtbxp3PKw2rqS4", + "digest": "7n1FLZBAqk3efwaajAGA7PwZCeksqNW1TxcNHicC7mnF", "effects": { "dependencies": { "pageInfo": { @@ -78,26 +78,15 @@ Response: { { "cursor": "eyJpIjowLCJjIjoxfQ", "node": { - "digest": "A6KhBiRjSwHvSbgfdLZqzUtZisB7PynYdzf9Z6YLPtaJ", + "digest": "WzyLyANwduDmmABbs49gCPagc7Ub8zSfoG99KtFSq2F", "kind": { "__typename": "ProgrammableTransactionBlock", "transactions": { "nodes": [ + {}, { - "module": "M1", - "functionName": "sum" - }, - { - "module": "M1", - "functionName": "sum" - }, - { - "module": "M1", - "functionName": "sum" - }, - { - "module": "M1", - "functionName": "create" + "module": "package", + "functionName": "make_immutable" } ] } @@ -107,15 +96,26 @@ Response: { { "cursor": "eyJpIjoxLCJjIjoxfQ", "node": { - "digest": "J3PtkEZg631SNT6FEzoZxcEcD1teVaukTh78Mzh93ycU", + "digest": "8TqHQX97iavt4JsQCz5tQ8JTDeNmXuWWQMh87RQhf1ip", "kind": { "__typename": "ProgrammableTransactionBlock", "transactions": { "nodes": [ - {}, { - "module": "package", - "functionName": "make_immutable" + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "create" } ] } @@ -138,7 +138,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "6Y2wDveP2zgYVNVSyS9DYdCBDE6cmMAtbxp3PKw2rqS4", + "digest": "7n1FLZBAqk3efwaajAGA7PwZCeksqNW1TxcNHicC7mnF", "effects": { "dependencies": { "pageInfo": { @@ -151,15 +151,26 @@ Response: { { "cursor": "eyJpIjoxLCJjIjoxfQ", "node": { - "digest": "J3PtkEZg631SNT6FEzoZxcEcD1teVaukTh78Mzh93ycU", + "digest": "8TqHQX97iavt4JsQCz5tQ8JTDeNmXuWWQMh87RQhf1ip", "kind": { "__typename": "ProgrammableTransactionBlock", "transactions": { "nodes": [ - {}, { - "module": "package", - "functionName": "make_immutable" + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "sum" + }, + { + "module": "M1", + "functionName": "create" } ] } diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp index b9e758983df..068bdd27a7f 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp @@ -30,7 +30,7 @@ Response: { "c0": { "nodes": [ { - "digest": "8SvtZ4FXTfB7R2Yf7P5nMxH7ELVmRiaYhf5JHjAhKLM", + "digest": "7QovzgQGyjpqkgWsWawcAY7yviFNaSc8PrnercRt6RNc", "kind": { "__typename": "GenesisTransaction" } @@ -46,7 +46,7 @@ Response: { } }, { - "digest": "21XaXWNhGpoMoZR9FTCVQCQxT8B3mLD3vJ2yeuLvXpCs", + "digest": "CeiRZnQNjzPELprt6jeFL89eM9LsadZyAg1eU48uARJT", "kind": { "__typename": "ProgrammableTransactionBlock" } @@ -87,7 +87,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "8SvtZ4FXTfB7R2Yf7P5nMxH7ELVmRiaYhf5JHjAhKLM", + "digest": "7QovzgQGyjpqkgWsWawcAY7yviFNaSc8PrnercRt6RNc", "kind": { "__typename": "GenesisTransaction" } @@ -105,7 +105,7 @@ Response: { } }, { - "digest": "21XaXWNhGpoMoZR9FTCVQCQxT8B3mLD3vJ2yeuLvXpCs", + "digest": "CeiRZnQNjzPELprt6jeFL89eM9LsadZyAg1eU48uARJT", "kind": { "__typename": "ProgrammableTransactionBlock" } @@ -154,7 +154,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "8SvtZ4FXTfB7R2Yf7P5nMxH7ELVmRiaYhf5JHjAhKLM", + "digest": "7QovzgQGyjpqkgWsWawcAY7yviFNaSc8PrnercRt6RNc", "kind": { "__typename": "GenesisTransaction" } @@ -172,7 +172,7 @@ Response: { } }, { - "digest": "21XaXWNhGpoMoZR9FTCVQCQxT8B3mLD3vJ2yeuLvXpCs", + "digest": "CeiRZnQNjzPELprt6jeFL89eM9LsadZyAg1eU48uARJT", "kind": { "__typename": "ProgrammableTransactionBlock" } diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp index c6801fc93aa..a490e991f1e 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp @@ -25,7 +25,7 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Error in 1st command, from '0x75b88d24bad02784e123bdb2f308a999d9bcb9e7aaefb8bc8f4c148e72ba8c5a::m::boom' (instruction 1), abort code: 42" + "errors": "Error in 1st command, from '0x23cae5ebc69e4cc972b00c75e766f6eca7b15a6a1e316a0c5c829d688c7763f0::m::boom' (instruction 1), abort code: 42" } } ] @@ -54,7 +54,7 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Error in 3rd command, from '0x75b88d24bad02784e123bdb2f308a999d9bcb9e7aaefb8bc8f4c148e72ba8c5a::m::boom' (instruction 1), abort code: 42" + "errors": "Error in 3rd command, from '0x23cae5ebc69e4cc972b00c75e766f6eca7b15a6a1e316a0c5c829d688c7763f0::m::boom' (instruction 1), abort code: 42" } } ] diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp index bbacead8450..1b4b64c39c5 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp @@ -60,7 +60,7 @@ Response: { }, "nodes": [ { - "digest": "5S473Dja67e1DM9C2YqHAUCBTwrRdtHZ8PK6DuzAsVKB", + "digest": "ELh7yeE6heVjBd8EktWRxBktDHQCAbB534iC6hyceUS5", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -68,7 +68,7 @@ Response: { } }, { - "digest": "39KR3MJpLgFePQudkSdpar7CxFf2uyKDF3Rurou1ea7K", + "digest": "6pXEQU9torcnvo37huWU6RGtns2k2X7A6E3r93GYJkjo", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -76,7 +76,7 @@ Response: { } }, { - "digest": "5qX9uo15phsaNyuSAMnxA2YiKPkUECDXgZ7jMn8f1ih1", + "digest": "7Hgk9c2t9eF5Aun2MwQ6bNRFqR4QpnoueCJYJPCEX41d", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -84,7 +84,7 @@ Response: { } }, { - "digest": "DiGeNbCDy5KzeviEaa5SiXMsBYVFrrYFwyT2KhZDm8Hf", + "digest": "77UjzaUc6Cxy5WWrxxxoSeo4PEBHAauVa5VGnggt8a41", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -92,7 +92,7 @@ Response: { } }, { - "digest": "AFbCaigSs5uttbRAjqzP8ve1oKN4XdDz5yFkBnL4ayw7", + "digest": "5LQPs2kgdvBsCoxNVRCjrbiY4au833YdN95yXcc13Yv9", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -117,7 +117,7 @@ Response: { }, "nodes": [ { - "digest": "5S473Dja67e1DM9C2YqHAUCBTwrRdtHZ8PK6DuzAsVKB", + "digest": "ELh7yeE6heVjBd8EktWRxBktDHQCAbB534iC6hyceUS5", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -142,7 +142,7 @@ Response: { }, "nodes": [ { - "digest": "39KR3MJpLgFePQudkSdpar7CxFf2uyKDF3Rurou1ea7K", + "digest": "6pXEQU9torcnvo37huWU6RGtns2k2X7A6E3r93GYJkjo", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -167,7 +167,7 @@ Response: { }, "nodes": [ { - "digest": "5qX9uo15phsaNyuSAMnxA2YiKPkUECDXgZ7jMn8f1ih1", + "digest": "7Hgk9c2t9eF5Aun2MwQ6bNRFqR4QpnoueCJYJPCEX41d", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -192,7 +192,7 @@ Response: { }, "nodes": [ { - "digest": "DiGeNbCDy5KzeviEaa5SiXMsBYVFrrYFwyT2KhZDm8Hf", + "digest": "77UjzaUc6Cxy5WWrxxxoSeo4PEBHAauVa5VGnggt8a41", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -217,7 +217,7 @@ Response: { }, "nodes": [ { - "digest": "AFbCaigSs5uttbRAjqzP8ve1oKN4XdDz5yFkBnL4ayw7", + "digest": "5LQPs2kgdvBsCoxNVRCjrbiY4au833YdN95yXcc13Yv9", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp index 2d21f130c56..9f30fb98699 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp @@ -20,12 +20,12 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "CFGHjxjyqyfpi1RJwqGCrVUPstjmXP1mdTJMyRZgMtXn", + "digest": "JC4fDgqHCNnYStc8NRrjfZq1sTUrMGhjTJ3Fw9RD7he1", "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" }, "signatures": [ - "APGWMqiH97blUVEaT6iITb60bKs4DxoXfCTrZjEa3bVckvyBDycPjLmJlCFq88wL1CYdElkrzd8SnmDKL7Ie8gl/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" + "AOAEyKej72mYRX5Xj3vU09LYD6Go0W2fUQd2bJ3wFDvLtHrCS5uNBIvjgCBeSIS7pX7dBJG04mMUQA4hdPbWugB/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" ], "gasInput": { "gasSponsor": { @@ -34,7 +34,7 @@ Response: { "gasPayment": { "nodes": [ { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" } ] }, @@ -96,7 +96,7 @@ Response: { "dependencies": { "nodes": [ { - "digest": "8SvtZ4FXTfB7R2Yf7P5nMxH7ELVmRiaYhf5JHjAhKLM" + "digest": "7QovzgQGyjpqkgWsWawcAY7yviFNaSc8PrnercRt6RNc" } ] }, @@ -116,37 +116,37 @@ Response: { "objectChanges": { "nodes": [ { - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", - "idCreated": true, + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "idCreated": false, "idDeleted": false, "outputState": { - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", - "digest": "4vMFTn9ZskPfhw1AdARbW73ME2PZig6ws4DXyMdKHEsm" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "digest": "CnDkVk4Wx3y2mxUujcT1XhCRowLLt4YVUa1nKADMaiP5" } }, { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "idCreated": false, + "address": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d", + "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "digest": "HTTwPRLhNsRBEmu8YPcGyQqKQq2rdsuQVHjhX81aEhno" + "address": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d", + "digest": "APb8E9nW7wXwX8h496ridJxPXL3crwLC2YzsvwRX8iyk" } }, { - "address": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124", + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124", - "digest": "6ufUA8wa6QMPGpSyxcEkFiwemMLRpDdR35oQtrMqxQ3U" + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", + "digest": "Bb2AFUDkVVHDaStDDRogBC2WU8WMKoqQrML2ju3DYRCK" } } ] }, "gasEffects": { "gasObject": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" }, "gasSummary": { "computationCost": "1000000", @@ -163,7 +163,7 @@ Response: { "sequenceNumber": 1 }, "transactionBlock": { - "digest": "CFGHjxjyqyfpi1RJwqGCrVUPstjmXP1mdTJMyRZgMtXn" + "digest": "JC4fDgqHCNnYStc8NRrjfZq1sTUrMGhjTJ3Fw9RD7he1" } }, "expiration": null @@ -190,12 +190,12 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "GxWcY9nHejR9UsnwdRsSiJngGfNvjr3FZP6bsdhnsa4W", + "digest": "Ayiirt9DAEt3U68euasXVqUZetSioL7JMdGAwmdZFGmd", "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" }, "signatures": [ - "AMxzxguiQVu0C9lW3wINTvVmJ86F23zHOXg3hLBQm1wpcMvdSNmadpVuOtS5u01PUUiJTjrXdGn6d3A/8Ms7qAB/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" + "AAGkMeD6xCM0uORnuTpJWY2fHFFbnZGyZlglkSi6uB3xfKP2M0DkeHPQKHhlZnVB3rjyJ4DSWY/LTVhCDZEzYgx/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" ], "gasInput": { "gasSponsor": { @@ -204,7 +204,7 @@ Response: { "gasPayment": { "nodes": [ { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" } ] }, @@ -219,21 +219,21 @@ Response: { "cursor": "eyJpIjowLCJjIjoyfQ", "node": { "__typename": "OwnedOrImmutable", - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", "version": 2, - "digest": "4vMFTn9ZskPfhw1AdARbW73ME2PZig6ws4DXyMdKHEsm", + "digest": "Bb2AFUDkVVHDaStDDRogBC2WU8WMKoqQrML2ju3DYRCK", "object": { - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", "version": 2, - "digest": "4vMFTn9ZskPfhw1AdARbW73ME2PZig6ws4DXyMdKHEsm", + "digest": "Bb2AFUDkVVHDaStDDRogBC2WU8WMKoqQrML2ju3DYRCK", "asMoveObject": { "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::package::UpgradeCap" }, "json": { - "id": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", - "package": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124", + "id": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", + "package": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d", "version": "1", "policy": 0 } @@ -315,7 +315,7 @@ Response: { "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000002" ], - "currentPackage": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124", + "currentPackage": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d", "upgradeTicket": { "__typename": "Result", "cmd": 0, @@ -367,10 +367,10 @@ Response: { "dependencies": { "nodes": [ { - "digest": "8SvtZ4FXTfB7R2Yf7P5nMxH7ELVmRiaYhf5JHjAhKLM" + "digest": "7QovzgQGyjpqkgWsWawcAY7yviFNaSc8PrnercRt6RNc" }, { - "digest": "CFGHjxjyqyfpi1RJwqGCrVUPstjmXP1mdTJMyRZgMtXn" + "digest": "JC4fDgqHCNnYStc8NRrjfZq1sTUrMGhjTJ3Fw9RD7he1" } ] }, @@ -390,37 +390,37 @@ Response: { "objectChanges": { "nodes": [ { - "address": "0x37bec35b91b29641a80a029561b1b0c0125aca8fbacae1fafb6aecdbad322ec7", - "idCreated": true, + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "idCreated": false, "idDeleted": false, "outputState": { - "address": "0x37bec35b91b29641a80a029561b1b0c0125aca8fbacae1fafb6aecdbad322ec7", - "digest": "Ebjo3QCg9zeM3tHd5p7RJQ5Tqk4569zH6bv4sTG9CLyN" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "digest": "8hFvFZ3SXtt7vC3ngvEKioAD51aZLEfuNBXrZncyBrPm" } }, { - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", - "idCreated": false, + "address": "0x4400f7effd240421d4739ab0ee929a1074defabe5c88664ec82b0d0a8e574e0b", + "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x8308af3c11c0db92d7e83a9360f337987a70d44d2ec88b63a40a4f892b50e1cf", - "digest": "4h9S3cfJh6d3RAXJy4BbpQ9LHNwDz3P8v7uwgoHsgU1A" + "address": "0x4400f7effd240421d4739ab0ee929a1074defabe5c88664ec82b0d0a8e574e0b", + "digest": "DoPuhchMtpDPPFmvnSQZpQkc3yUXnLtWQbrJXtoXnChc" } }, { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", "idCreated": false, "idDeleted": false, "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "digest": "3ADeRg8mzD8t1wnKMzt3d6GFDTvR3yxfFW9epe1vvDT3" + "address": "0xf1c7bf0f43f4c4fd40d63b6555234287034b7c87c6b3b90c81905e722260992b", + "digest": "F8bfTZZaTBzU4RTVqUsyXajNGNjJ9WZNPMWUPvHeckRz" } } ] }, "gasEffects": { "gasObject": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" }, "gasSummary": { "computationCost": "1000000", @@ -437,7 +437,7 @@ Response: { "sequenceNumber": 2 }, "transactionBlock": { - "digest": "GxWcY9nHejR9UsnwdRsSiJngGfNvjr3FZP6bsdhnsa4W" + "digest": "Ayiirt9DAEt3U68euasXVqUZetSioL7JMdGAwmdZFGmd" } }, "expiration": null @@ -482,12 +482,12 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "6FHUHJ4fcJseo8a96JdX2DFB4EvRGjh3qQan1J7MpCuQ", + "digest": "BVkWwF92Dd6Urnc4y3VBZzVTDdHbF78xaJDn35JwLmZn", "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" }, "signatures": [ - "ABEsPsr55btwH5ppdG06I7Qsxc1Gjjn9fnjvXICzjYpwBxaTDNUlEdoaxXH4HE5vRt/84xQIauPltQd/tf5BBgV/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" + "ACA5XpS0EOg0E8Sa9LxokH9CFapcyLOdREx9AcUgAH9BySB5mLOBQEIaFHYB+KYX3AnUlaDqynzt0FDB1F/fvwp/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" ], "gasInput": { "gasSponsor": { @@ -496,7 +496,7 @@ Response: { "gasPayment": { "nodes": [ { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" } ] }, @@ -591,7 +591,7 @@ Response: { "cursor": "eyJpIjozLCJjIjozfQ", "node": { "__typename": "MoveCallTransaction", - "package": "0x37bec35b91b29641a80a029561b1b0c0125aca8fbacae1fafb6aecdbad322ec7", + "package": "0x4400f7effd240421d4739ab0ee929a1074defabe5c88664ec82b0d0a8e574e0b", "module": "m", "functionName": "new", "typeArguments": [], @@ -615,7 +615,7 @@ Response: { ], "return": [ { - "repr": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124::m::Foo" + "repr": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d::m::Foo" } ] } @@ -642,7 +642,7 @@ Response: { "cursor": "eyJpIjo1LCJjIjozfQ", "node": { "__typename": "MoveCallTransaction", - "package": "0x37bec35b91b29641a80a029561b1b0c0125aca8fbacae1fafb6aecdbad322ec7", + "package": "0x4400f7effd240421d4739ab0ee929a1074defabe5c88664ec82b0d0a8e574e0b", "module": "m", "functionName": "new", "typeArguments": [], @@ -666,7 +666,7 @@ Response: { ], "return": [ { - "repr": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124::m::Foo" + "repr": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d::m::Foo" } ] } @@ -676,7 +676,7 @@ Response: { "cursor": "eyJpIjo2LCJjIjozfQ", "node": { "__typename": "MoveCallTransaction", - "package": "0x37bec35b91b29641a80a029561b1b0c0125aca8fbacae1fafb6aecdbad322ec7", + "package": "0x4400f7effd240421d4739ab0ee929a1074defabe5c88664ec82b0d0a8e574e0b", "module": "m", "functionName": "burn", "typeArguments": [], @@ -692,7 +692,7 @@ Response: { "typeParameters": [], "parameters": [ { - "repr": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124::m::Foo" + "repr": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d::m::Foo" } ], "return": [] @@ -744,10 +744,10 @@ Response: { "dependencies": { "nodes": [ { - "digest": "Ao8yAFqTMxdyNkqqxLFbLpEGytXrsCNZDoQExUw5cs5h" + "digest": "Ayiirt9DAEt3U68euasXVqUZetSioL7JMdGAwmdZFGmd" }, { - "digest": "GxWcY9nHejR9UsnwdRsSiJngGfNvjr3FZP6bsdhnsa4W" + "digest": "E9jtVDAwSVRpNaTFTUdi8ra788iTaiM132Hd6z9gc18Y" } ] }, @@ -767,21 +767,21 @@ Response: { "objectChanges": { "nodes": [ { - "address": "0x0f7eee83affe92a4234d1ed1fa5fd7eec7f3a5a9dc76052afa4888b0f2b7b644", - "idCreated": true, + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "idCreated": false, "idDeleted": false, "outputState": { - "address": "0x0f7eee83affe92a4234d1ed1fa5fd7eec7f3a5a9dc76052afa4888b0f2b7b644", - "digest": "BdCiAy7whTM9k4ngPo9ZutQuYSiNgj6NbNyE6YzWHVh3", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "digest": "BGrEPRKLpknuRRFFR9DLxzY1e1DMPVEe332oMpry3X7B", "asMoveObject": { "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x0f7eee83affe92a4234d1ed1fa5fd7eec7f3a5a9dc76052afa4888b0f2b7b644", + "id": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "balance": { - "value": "2000" + "value": "299999982082400" } } } @@ -789,45 +789,45 @@ Response: { } }, { - "address": "0x5bf8f088633fe9b7c59be86f8d6505ab9cb351f64e2ed517279660f6c40b2d85", + "address": "0xa4c559f7cb00c7db5a7fe8bce053d01761626dab3c83f2d60f98dfc2775c7301", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x5bf8f088633fe9b7c59be86f8d6505ab9cb351f64e2ed517279660f6c40b2d85", - "digest": "D9pieNPNw7knmDrG5f1DT6wuvF8sujRaL2SAZPtPhuvP", + "address": "0xa4c559f7cb00c7db5a7fe8bce053d01761626dab3c83f2d60f98dfc2775c7301", + "digest": "74PJWceSPwJnGAq7c8YYnbz1DoinXWGtB3GCywQDS3Qd", "asMoveObject": { "contents": { "type": { - "repr": "0xce1db1b45693e4e440c0f8f5ebc785e1aed8a61358864bc6575c38b461889124::m::Foo" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x5bf8f088633fe9b7c59be86f8d6505ab9cb351f64e2ed517279660f6c40b2d85", - "xs": [ - "42", - "43" - ] + "id": "0xa4c559f7cb00c7db5a7fe8bce053d01761626dab3c83f2d60f98dfc2775c7301", + "balance": { + "value": "2000" + } } } } } }, { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "idCreated": false, + "address": "0xd9d2c7d7dddac200f42f3cde3a6cf715f9c2ae43ce4f1925e9ad0f4363909205", + "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "digest": "2JUzZtk9NrMDx11EHJz49Uvo5xXZSpPrsYB6kZk3ZrJb", + "address": "0xd9d2c7d7dddac200f42f3cde3a6cf715f9c2ae43ce4f1925e9ad0f4363909205", + "digest": "J29xCJyjAMyBUDYXPuGR49hf8d9nuMnXCbmkUUYkS8oz", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x8c336a8913724573c0e40a7c6db1b13de1af095489035dc2bfd0750b910e534d::m::Foo" }, "json": { - "id": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "balance": { - "value": "299999982082400" - } + "id": "0xd9d2c7d7dddac200f42f3cde3a6cf715f9c2ae43ce4f1925e9ad0f4363909205", + "xs": [ + "42", + "43" + ] } } } @@ -837,7 +837,7 @@ Response: { }, "gasEffects": { "gasObject": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" }, "gasSummary": { "computationCost": "1000000", @@ -854,7 +854,7 @@ Response: { "sequenceNumber": 3 }, "transactionBlock": { - "digest": "6FHUHJ4fcJseo8a96JdX2DFB4EvRGjh3qQan1J7MpCuQ" + "digest": "BVkWwF92Dd6Urnc4y3VBZzVTDdHbF78xaJDn35JwLmZn" } }, "expiration": null @@ -881,12 +881,12 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "7AcMmayJWhnyfRvobbc15ZSHsBWW8FUGS4DGwtRZaEnt", + "digest": "7C2d9xdydRZA2ufeDKVh6BKk6KjpmcWa5RdqKkBuVBa3", "sender": { "address": "0x8cca4e1ce0ba5904cea61df9242da2f7d29e3ef328fb7ec07c086b3bf47ca61a" }, "signatures": [ - "AECFoXv44azsG0HePTy1tNAs4ckzPmchqX/YDWyz+43+w04ERJVz3H5X/YlMlQ/GD9QP+62mWw/j5ghQkm7pewB/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" + "AGreyn+gWEHg13CIWTkxYb0XyR0h02PL7z86mbBBFHM+wkXrALSDK4WCaxdxxRL4pHA78IDtUr+x3Y3EH/yQuQ5/UUY663bYjcm3XmNyULIgxJz1t5Z9vxfB+fp8WUoJKA==" ], "gasInput": { "gasSponsor": { @@ -895,7 +895,7 @@ Response: { "gasPayment": { "nodes": [ { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" } ] }, @@ -942,7 +942,7 @@ Response: { "dependencies": { "nodes": [ { - "digest": "6FHUHJ4fcJseo8a96JdX2DFB4EvRGjh3qQan1J7MpCuQ" + "digest": "BVkWwF92Dd6Urnc4y3VBZzVTDdHbF78xaJDn35JwLmZn" } ] }, @@ -962,19 +962,19 @@ Response: { "objectChanges": { "nodes": [ { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", "idCreated": false, "idDeleted": false, "outputState": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95", - "digest": "5HwjzJLKQe9rU4SkaxGbQLXZVdvXYoVafexq2tpM2Ynr" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4", + "digest": "nWzh7AufHTnrdB1zJzzUb89bhDcRKtaLqNLnuHhxvPS" } } ] }, "gasEffects": { "gasObject": { - "address": "0xbf4fd0801cda9bdd4713316aeb2067f40dca9301714ab9ebc1c5f4a77e1baa95" + "address": "0x148ca7092f2fe315b8f103c9f9a1cdfee22af26dd5aef1f9c00204d1136ed4e4" }, "gasSummary": { "computationCost": "1000000", @@ -991,7 +991,7 @@ Response: { "sequenceNumber": 4 }, "transactionBlock": { - "digest": "7AcMmayJWhnyfRvobbc15ZSHsBWW8FUGS4DGwtRZaEnt" + "digest": "7C2d9xdydRZA2ufeDKVh6BKk6KjpmcWa5RdqKkBuVBa3" } }, "expiration": null diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/random.exp b/crates/iota-graphql-e2e-tests/tests/transactions/random.exp index 1294e4d520e..84ac8c622f6 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/random.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/random.exp @@ -19,7 +19,7 @@ Response: { "json": { "id": "0x0000000000000000000000000000000000000000000000000000000000000008", "inner": { - "id": "0xef42157fdeb89d4438fe673bdb790ae751f1132b60341c6413895e75313f9621", + "id": "0x24d1d77c8cf2db0e8287ea7ce8d0570cfe7f047aebe58fd914fb529deba7d8e7", "version": "1" } } diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp index 97247f87727..769b0da3a60 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -124,7 +124,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -135,7 +135,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -163,7 +163,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -191,7 +191,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -219,7 +219,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -230,7 +230,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -258,7 +258,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -286,7 +286,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp index 49d4be9517a..215b7169dd1 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "g9de2wXfyXL43YAH9P4JZtNTmoNSL3MG6o5BCLGELBx", + "digest": "w283ZNJApJnApyukmuvNxAVPook3kuw6Buy5uxA2vMT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -124,7 +124,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "g9de2wXfyXL43YAH9P4JZtNTmoNSL3MG6o5BCLGELBx", + "digest": "w283ZNJApJnApyukmuvNxAVPook3kuw6Buy5uxA2vMT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -135,7 +135,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8nFaUn821BQeHEYJB48D2ditaP7eNnZasV2BcpdP1NkS", + "digest": "8NFHLs1FfwuzH2QcFq3h4MpZfixe6mkUh654DKaKkzAT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -163,7 +163,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo1LCJpIjpmYWxzZX0", "node": { - "digest": "E4pnRiWGDKRBiiTePyhQwTz46jvtrBSAChKCLSdgyAQb", + "digest": "8BAweLWDcP93oevhYAvbvCAsMsUPQafgef1T9iQ1yg6D", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp index 052d7189640..35a0deed246 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -107,7 +107,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "g9de2wXfyXL43YAH9P4JZtNTmoNSL3MG6o5BCLGELBx", + "digest": "w283ZNJApJnApyukmuvNxAVPook3kuw6Buy5uxA2vMT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -118,7 +118,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8nFaUn821BQeHEYJB48D2ditaP7eNnZasV2BcpdP1NkS", + "digest": "8NFHLs1FfwuzH2QcFq3h4MpZfixe6mkUh654DKaKkzAT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -129,7 +129,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "G9rZB2AS1UvbTy7kUXX17vX2JNRXvnBP37EcC1cBbyJx", + "digest": "CyDVL1kSotyeiZWBTtiuW1havytGPypDTBCevDHYPU1i", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -140,7 +140,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "HKr6Um13cPQE2cna5xDD7cYdtpxKZFPSC9NTuKefMdj", + "digest": "EdLLzJdrZ7PXWiBR7vdDkzHHeEbdUotyJxAXRK4ZJbyT", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -168,7 +168,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -196,7 +196,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "g9de2wXfyXL43YAH9P4JZtNTmoNSL3MG6o5BCLGELBx", + "digest": "w283ZNJApJnApyukmuvNxAVPook3kuw6Buy5uxA2vMT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -224,7 +224,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "8nFaUn821BQeHEYJB48D2ditaP7eNnZasV2BcpdP1NkS", + "digest": "8NFHLs1FfwuzH2QcFq3h4MpZfixe6mkUh654DKaKkzAT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -268,7 +268,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "G9rZB2AS1UvbTy7kUXX17vX2JNRXvnBP37EcC1cBbyJx", + "digest": "CyDVL1kSotyeiZWBTtiuW1havytGPypDTBCevDHYPU1i", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -279,7 +279,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "HKr6Um13cPQE2cna5xDD7cYdtpxKZFPSC9NTuKefMdj", + "digest": "EdLLzJdrZ7PXWiBR7vdDkzHHeEbdUotyJxAXRK4ZJbyT", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -333,7 +333,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "G9rZB2AS1UvbTy7kUXX17vX2JNRXvnBP37EcC1cBbyJx", + "digest": "CyDVL1kSotyeiZWBTtiuW1havytGPypDTBCevDHYPU1i", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -344,7 +344,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "HKr6Um13cPQE2cna5xDD7cYdtpxKZFPSC9NTuKefMdj", + "digest": "EdLLzJdrZ7PXWiBR7vdDkzHHeEbdUotyJxAXRK4ZJbyT", "effects": { "checkpoint": { "sequenceNumber": 3 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp index df0fb13d8de..9bb922e4f06 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -107,7 +107,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -118,7 +118,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo3LCJpIjpmYWxzZX0", "node": { - "digest": "258doz3t7Tbucgg72w5BYsxAXedyofTmfmoxshZ58DLE", + "digest": "6jHo4nZ7NZqVxyq6sF1VGtfjzGJukW2F5AS1b4aUzyeD", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -129,7 +129,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo5LCJpIjpmYWxzZX0", "node": { - "digest": "7oM8nZHDkLHWBaKiadaqr7dSfBJ3ktECNcN3LHDsPbjR", + "digest": "E752F1sH2yqGHGWgsEvrTsWJMBcMNSjs6CHBuchS4akc", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -140,7 +140,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "CaNuSnU88qrQ34FDQEaFigBg7mUKqBUazbyn7iS6eWZp", + "digest": "9yzqWZKuSHSS3jLVrugaKUwJmdbP4WmL57sLdavmNUda", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -168,7 +168,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "CaNuSnU88qrQ34FDQEaFigBg7mUKqBUazbyn7iS6eWZp", + "digest": "9yzqWZKuSHSS3jLVrugaKUwJmdbP4WmL57sLdavmNUda", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -196,7 +196,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo5LCJpIjpmYWxzZX0", "node": { - "digest": "7oM8nZHDkLHWBaKiadaqr7dSfBJ3ktECNcN3LHDsPbjR", + "digest": "E752F1sH2yqGHGWgsEvrTsWJMBcMNSjs6CHBuchS4akc", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -224,7 +224,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo3LCJpIjpmYWxzZX0", "node": { - "digest": "258doz3t7Tbucgg72w5BYsxAXedyofTmfmoxshZ58DLE", + "digest": "6jHo4nZ7NZqVxyq6sF1VGtfjzGJukW2F5AS1b4aUzyeD", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -268,7 +268,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -279,7 +279,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp index 32785936978..14d6184d8fa 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp @@ -164,7 +164,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -175,7 +175,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "9hfQDYYeDimv2iBCHLz2CoW1PsnmFs2Z3xQ2RnSneB5k", + "digest": "6PEMNj15uRSr9iAVynw95ck73zZkmYCbZ1E5MnuEiN6y", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -186,7 +186,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoxNywiaSI6ZmFsc2V9", "node": { - "digest": "EYnndyd9P4KDjsKpXKDmL8UDT63BLTk4QRY57bViNKoy", + "digest": "8kZ8YfX7GQqeGeWLjUYBzhhYiavYN7aSQTChSASsbfgT", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -197,7 +197,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoxOCwiaSI6ZmFsc2V9", "node": { - "digest": "8wupkDnWvMVQj952oeFesB9TkvsT29dnqd6v99rgDYUZ", + "digest": "8EhHDqKAReeQHTp6TC7gkNzuddSWr6RkEUjm7vJRFWJa", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -208,7 +208,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyMSwiaSI6ZmFsc2V9", "node": { - "digest": "9G4fVeLrRuKqtRq2XKULBNGuXbBAq81VVi7pLVV8WSjH", + "digest": "68V4d957WGWLYNzQWo6DoMCdfim6mkUqDjdvno84xSvP", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -236,7 +236,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -264,7 +264,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "9hfQDYYeDimv2iBCHLz2CoW1PsnmFs2Z3xQ2RnSneB5k", + "digest": "6PEMNj15uRSr9iAVynw95ck73zZkmYCbZ1E5MnuEiN6y", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -308,7 +308,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoxNywiaSI6ZmFsc2V9", "node": { - "digest": "EYnndyd9P4KDjsKpXKDmL8UDT63BLTk4QRY57bViNKoy", + "digest": "8kZ8YfX7GQqeGeWLjUYBzhhYiavYN7aSQTChSASsbfgT", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -336,7 +336,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoxOCwiaSI6ZmFsc2V9", "node": { - "digest": "8wupkDnWvMVQj952oeFesB9TkvsT29dnqd6v99rgDYUZ", + "digest": "8EhHDqKAReeQHTp6TC7gkNzuddSWr6RkEUjm7vJRFWJa", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -364,7 +364,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoyMSwiaSI6ZmFsc2V9", "node": { - "digest": "9G4fVeLrRuKqtRq2XKULBNGuXbBAq81VVi7pLVV8WSjH", + "digest": "68V4d957WGWLYNzQWo6DoMCdfim6mkUqDjdvno84xSvP", "effects": { "checkpoint": { "sequenceNumber": 5 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp index 6b34c9b9c3d..71b62034b72 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp @@ -164,7 +164,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -175,7 +175,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "9hfQDYYeDimv2iBCHLz2CoW1PsnmFs2Z3xQ2RnSneB5k", + "digest": "6PEMNj15uRSr9iAVynw95ck73zZkmYCbZ1E5MnuEiN6y", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -186,7 +186,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoxNywiaSI6ZmFsc2V9", "node": { - "digest": "EYnndyd9P4KDjsKpXKDmL8UDT63BLTk4QRY57bViNKoy", + "digest": "8kZ8YfX7GQqeGeWLjUYBzhhYiavYN7aSQTChSASsbfgT", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -197,7 +197,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyMSwiaSI6ZmFsc2V9", "node": { - "digest": "FqCdNkJe4WuFVYK6NQYUU2A5N3z5noD2gSRxSNNxSEqy", + "digest": "4RuZotWj8QPLUxSB1UCv8kxdRKHLRZ2qqi3S3A4HqR3R", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -225,7 +225,7 @@ Response: { { "cursor": "eyJjIjo1LCJ0IjoyMSwiaSI6ZmFsc2V9", "node": { - "digest": "FqCdNkJe4WuFVYK6NQYUU2A5N3z5noD2gSRxSNNxSEqy", + "digest": "4RuZotWj8QPLUxSB1UCv8kxdRKHLRZ2qqi3S3A4HqR3R", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -253,7 +253,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoxNywiaSI6ZmFsc2V9", "node": { - "digest": "EYnndyd9P4KDjsKpXKDmL8UDT63BLTk4QRY57bViNKoy", + "digest": "8kZ8YfX7GQqeGeWLjUYBzhhYiavYN7aSQTChSASsbfgT", "effects": { "checkpoint": { "sequenceNumber": 5 @@ -313,7 +313,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "9hfQDYYeDimv2iBCHLz2CoW1PsnmFs2Z3xQ2RnSneB5k", + "digest": "6PEMNj15uRSr9iAVynw95ck73zZkmYCbZ1E5MnuEiN6y", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -341,7 +341,7 @@ Response: { { "cursor": "eyJjIjo3LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp index f7e044ed728..9e6afbdee81 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -107,7 +107,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "CGPw5KrYiJiDyZa24BzvHMyJvUBhHWP6F1sbWCjwozLS", + "digest": "5sYGAGytaNdRzHSvo2dQ3fC6mewJZYExn9uczzEeYHQT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -118,7 +118,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -129,7 +129,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo1LCJpIjpmYWxzZX0", "node": { - "digest": "GvfWZNUzEew3a5RhE7rGKjH3L4gHoa4k6m1Nva96E6bp", + "digest": "7Fm1YTkNeGE88f15En2vJdEXHtmGnTivhRY4gksp8xND", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -140,7 +140,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -151,7 +151,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo3LCJpIjpmYWxzZX0", "node": { - "digest": "EUTZPzJudTHwpPwDeDmB2y9HCuhatB8ZjWLQUFiUuhQE", + "digest": "8KEmy9BqxUKSx9RvH21bbteWZ2n5MoMrjArU3YFJYQ5H", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -162,7 +162,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -173,7 +173,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo5LCJpIjpmYWxzZX0", "node": { - "digest": "3NWg9dFnkdCymgzztThS3BvSa4HRJ3NEUyab8WcuYYJV", + "digest": "CW6wJkkpkvumxL9vTcKpDUnYkgbJariJWdYGBciSa15h", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -184,7 +184,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -195,7 +195,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "AiHnbX3T3nUETNFEZKiFnuukuh8v8XzBfjqNfqTMbcWK", + "digest": "9eroEXRJ3Pn8REp3Ypm5dx6pesNdKF6zyatBeb4ZyLFJ", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -223,7 +223,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -251,7 +251,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -279,7 +279,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -290,7 +290,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -318,7 +318,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp index 76b54b87d5a..0abc38060a4 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp @@ -96,7 +96,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -107,7 +107,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjozLCJpIjpmYWxzZX0", "node": { - "digest": "CGPw5KrYiJiDyZa24BzvHMyJvUBhHWP6F1sbWCjwozLS", + "digest": "5sYGAGytaNdRzHSvo2dQ3fC6mewJZYExn9uczzEeYHQT", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -118,7 +118,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -129,7 +129,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo1LCJpIjpmYWxzZX0", "node": { - "digest": "GvfWZNUzEew3a5RhE7rGKjH3L4gHoa4k6m1Nva96E6bp", + "digest": "7Fm1YTkNeGE88f15En2vJdEXHtmGnTivhRY4gksp8xND", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -140,7 +140,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -151,7 +151,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo3LCJpIjpmYWxzZX0", "node": { - "digest": "EUTZPzJudTHwpPwDeDmB2y9HCuhatB8ZjWLQUFiUuhQE", + "digest": "8KEmy9BqxUKSx9RvH21bbteWZ2n5MoMrjArU3YFJYQ5H", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -162,7 +162,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -173,7 +173,7 @@ Response: { { "cursor": "eyJjIjozLCJ0Ijo5LCJpIjpmYWxzZX0", "node": { - "digest": "3NWg9dFnkdCymgzztThS3BvSa4HRJ3NEUyab8WcuYYJV", + "digest": "CW6wJkkpkvumxL9vTcKpDUnYkgbJariJWdYGBciSa15h", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -184,7 +184,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -195,7 +195,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMSwiaSI6ZmFsc2V9", "node": { - "digest": "AiHnbX3T3nUETNFEZKiFnuukuh8v8XzBfjqNfqTMbcWK", + "digest": "9eroEXRJ3Pn8REp3Ypm5dx6pesNdKF6zyatBeb4ZyLFJ", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -223,7 +223,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoxMCwiaSI6ZmFsc2V9", "node": { - "digest": "EP6Gr5u8msQHfb7RxBPoQTi3d6DTmwsZ2GRY6GfAj3YA", + "digest": "9mPn4RD4yHqHh57drkGEAUs6tc2znv3qFYNwkDDZwKGb", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -251,7 +251,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo4LCJpIjpmYWxzZX0", "node": { - "digest": "29eV4ttEPsEKaMV5w2CQQNy7CYfPJ3htyJJsdPxbn8zE", + "digest": "J8BPw7KNfobSLFY4PjkW9hghBCB1xcVmYSE4bDJ6AeF", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -279,7 +279,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo2LCJpIjpmYWxzZX0", "node": { - "digest": "7q8XWECsrjrYfBLVirtM1TbbYGbwuN7vYZt5Zq55DZ6c", + "digest": "BSrFSzzsckmsYSezXKmFhdJ2CAkrNqqv5tViaRB6B1VN", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -307,7 +307,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0Ijo0LCJpIjpmYWxzZX0", "node": { - "digest": "Dnzdyd3vDun537bAMz7DvxKG8ybVFRmvJyeRBBDqVvMy", + "digest": "7SduRXoRF3A6iGGFrw1QgVycjcFP9D8cLLiL6Qpsom5z", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -335,7 +335,7 @@ Response: { { "cursor": "eyJjIjo0LCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "GWwdz5zBA1yPYJf6h1yxtZ9QGLQaUcrr4jWK1ZUG2VM6", + "digest": "DaLawVV4UMq6hAVBBY8cobbFhwHDeFzsS3NoQrBpu6mP", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp index d83fd0b488f..af4e3c5dc2d 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp @@ -94,7 +94,7 @@ Response: { }, "nodes": [ { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -102,7 +102,7 @@ Response: { } }, { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -110,7 +110,7 @@ Response: { } }, { - "digest": "2KwcwgpuDJzFRN3d6tsACZk8rxpELMkkdraoA1C9HtX8", + "digest": "2PujRM4akaHMqrAyY7wiTFeCSuRkjEmGKfsK5xcNiS8c", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -118,7 +118,7 @@ Response: { } }, { - "digest": "J6n5bKEKVG2fTQnPfwYEx519PVm6cVRaJ555EL2n4VFH", + "digest": "78s9VneHNHFJhmDLfBoNLMHDZTo71Vn12cSRhmz1iDWE", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -126,7 +126,7 @@ Response: { } }, { - "digest": "5k29tRfQ68Fg87G7vjq4nR7cuXjguUTZDvaQZ4Yriv6d", + "digest": "37dfKVCCkCP3QpsnPT7bRbSZ8wbtoyvG9dpAWT8MxReG", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -134,7 +134,7 @@ Response: { } }, { - "digest": "H5ksb5gvCnf6CgJfwymnrMkGGfDfTcCUtUdb4B5NWCAn", + "digest": "GdQbNqU8ZNwfQyTKFR1rcLG92n3gvqKeghMwZe6jcZgs", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -142,7 +142,7 @@ Response: { } }, { - "digest": "5akTvsZxyaD8qPy4USdysxAH4SKoDjGJmshRpDyQip98", + "digest": "BFDNEGnBW4sqPEmqouCmZEApSScMrXc4XszqNJ82FCwN", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -150,7 +150,7 @@ Response: { } }, { - "digest": "6Eg258qqgGs9AUKnJFUFJQSu4Uk2XCJZZu8gVga3XM3T", + "digest": "BTEpbpgkv44AJPyQZrDGPf1Rw4cWpDATJAo1SPy5Snvf", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -158,7 +158,7 @@ Response: { } }, { - "digest": "426m3vv35dULKjnid7roTUQjYs3PZ4hrs14f1AW1Rrkg", + "digest": "DbgGFoEuvgKpqyuoJozZvmFdAtHgFAvfhZs6q4JQQ266", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -166,7 +166,7 @@ Response: { } }, { - "digest": "8BwgFuaepUNC7fQbsGds9zrSFKRiRUAVn3ws5vuha5hf", + "digest": "9dYFUYvV9sSWRAatiHP5nCUn2ZKX4ezu2rPh9WqNTewx", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -191,7 +191,7 @@ Response: { }, "nodes": [ { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -199,7 +199,7 @@ Response: { } }, { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -207,7 +207,7 @@ Response: { } }, { - "digest": "2KwcwgpuDJzFRN3d6tsACZk8rxpELMkkdraoA1C9HtX8", + "digest": "2PujRM4akaHMqrAyY7wiTFeCSuRkjEmGKfsK5xcNiS8c", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -215,7 +215,7 @@ Response: { } }, { - "digest": "J6n5bKEKVG2fTQnPfwYEx519PVm6cVRaJ555EL2n4VFH", + "digest": "78s9VneHNHFJhmDLfBoNLMHDZTo71Vn12cSRhmz1iDWE", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -223,7 +223,7 @@ Response: { } }, { - "digest": "5k29tRfQ68Fg87G7vjq4nR7cuXjguUTZDvaQZ4Yriv6d", + "digest": "37dfKVCCkCP3QpsnPT7bRbSZ8wbtoyvG9dpAWT8MxReG", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -231,7 +231,7 @@ Response: { } }, { - "digest": "H5ksb5gvCnf6CgJfwymnrMkGGfDfTcCUtUdb4B5NWCAn", + "digest": "GdQbNqU8ZNwfQyTKFR1rcLG92n3gvqKeghMwZe6jcZgs", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -239,7 +239,7 @@ Response: { } }, { - "digest": "5akTvsZxyaD8qPy4USdysxAH4SKoDjGJmshRpDyQip98", + "digest": "BFDNEGnBW4sqPEmqouCmZEApSScMrXc4XszqNJ82FCwN", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -247,7 +247,7 @@ Response: { } }, { - "digest": "6Eg258qqgGs9AUKnJFUFJQSu4Uk2XCJZZu8gVga3XM3T", + "digest": "BTEpbpgkv44AJPyQZrDGPf1Rw4cWpDATJAo1SPy5Snvf", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -255,7 +255,7 @@ Response: { } }, { - "digest": "426m3vv35dULKjnid7roTUQjYs3PZ4hrs14f1AW1Rrkg", + "digest": "DbgGFoEuvgKpqyuoJozZvmFdAtHgFAvfhZs6q4JQQ266", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -263,7 +263,7 @@ Response: { } }, { - "digest": "8BwgFuaepUNC7fQbsGds9zrSFKRiRUAVn3ws5vuha5hf", + "digest": "9dYFUYvV9sSWRAatiHP5nCUn2ZKX4ezu2rPh9WqNTewx", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -311,7 +311,7 @@ Response: { }, "nodes": [ { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -319,7 +319,7 @@ Response: { } }, { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -327,7 +327,7 @@ Response: { } }, { - "digest": "2KwcwgpuDJzFRN3d6tsACZk8rxpELMkkdraoA1C9HtX8", + "digest": "2PujRM4akaHMqrAyY7wiTFeCSuRkjEmGKfsK5xcNiS8c", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -335,7 +335,7 @@ Response: { } }, { - "digest": "J6n5bKEKVG2fTQnPfwYEx519PVm6cVRaJ555EL2n4VFH", + "digest": "78s9VneHNHFJhmDLfBoNLMHDZTo71Vn12cSRhmz1iDWE", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -343,7 +343,7 @@ Response: { } }, { - "digest": "5k29tRfQ68Fg87G7vjq4nR7cuXjguUTZDvaQZ4Yriv6d", + "digest": "37dfKVCCkCP3QpsnPT7bRbSZ8wbtoyvG9dpAWT8MxReG", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -351,7 +351,7 @@ Response: { } }, { - "digest": "H5ksb5gvCnf6CgJfwymnrMkGGfDfTcCUtUdb4B5NWCAn", + "digest": "GdQbNqU8ZNwfQyTKFR1rcLG92n3gvqKeghMwZe6jcZgs", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -359,7 +359,7 @@ Response: { } }, { - "digest": "5akTvsZxyaD8qPy4USdysxAH4SKoDjGJmshRpDyQip98", + "digest": "BFDNEGnBW4sqPEmqouCmZEApSScMrXc4XszqNJ82FCwN", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -367,7 +367,7 @@ Response: { } }, { - "digest": "6Eg258qqgGs9AUKnJFUFJQSu4Uk2XCJZZu8gVga3XM3T", + "digest": "BTEpbpgkv44AJPyQZrDGPf1Rw4cWpDATJAo1SPy5Snvf", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -375,7 +375,7 @@ Response: { } }, { - "digest": "426m3vv35dULKjnid7roTUQjYs3PZ4hrs14f1AW1Rrkg", + "digest": "DbgGFoEuvgKpqyuoJozZvmFdAtHgFAvfhZs6q4JQQ266", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -383,7 +383,7 @@ Response: { } }, { - "digest": "8BwgFuaepUNC7fQbsGds9zrSFKRiRUAVn3ws5vuha5hf", + "digest": "9dYFUYvV9sSWRAatiHP5nCUn2ZKX4ezu2rPh9WqNTewx", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -431,7 +431,7 @@ Response: { }, "nodes": [ { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -439,7 +439,7 @@ Response: { } }, { - "digest": "65DSnzKiePBU187otXJCRQxvfdiF7zow5o9CgKZJEM2p", + "digest": "MJJQX7jM5Dgehpg3xmtFbjtAsFcfJT9XkvJ213Zg6vH", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -447,7 +447,7 @@ Response: { } }, { - "digest": "2KwcwgpuDJzFRN3d6tsACZk8rxpELMkkdraoA1C9HtX8", + "digest": "2PujRM4akaHMqrAyY7wiTFeCSuRkjEmGKfsK5xcNiS8c", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -455,7 +455,7 @@ Response: { } }, { - "digest": "J6n5bKEKVG2fTQnPfwYEx519PVm6cVRaJ555EL2n4VFH", + "digest": "78s9VneHNHFJhmDLfBoNLMHDZTo71Vn12cSRhmz1iDWE", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -463,7 +463,7 @@ Response: { } }, { - "digest": "5k29tRfQ68Fg87G7vjq4nR7cuXjguUTZDvaQZ4Yriv6d", + "digest": "37dfKVCCkCP3QpsnPT7bRbSZ8wbtoyvG9dpAWT8MxReG", "effects": { "checkpoint": { "sequenceNumber": 2 @@ -471,7 +471,7 @@ Response: { } }, { - "digest": "H5ksb5gvCnf6CgJfwymnrMkGGfDfTcCUtUdb4B5NWCAn", + "digest": "GdQbNqU8ZNwfQyTKFR1rcLG92n3gvqKeghMwZe6jcZgs", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -479,7 +479,7 @@ Response: { } }, { - "digest": "5akTvsZxyaD8qPy4USdysxAH4SKoDjGJmshRpDyQip98", + "digest": "BFDNEGnBW4sqPEmqouCmZEApSScMrXc4XszqNJ82FCwN", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -487,7 +487,7 @@ Response: { } }, { - "digest": "6Eg258qqgGs9AUKnJFUFJQSu4Uk2XCJZZu8gVga3XM3T", + "digest": "BTEpbpgkv44AJPyQZrDGPf1Rw4cWpDATJAo1SPy5Snvf", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -495,7 +495,7 @@ Response: { } }, { - "digest": "426m3vv35dULKjnid7roTUQjYs3PZ4hrs14f1AW1Rrkg", + "digest": "DbgGFoEuvgKpqyuoJozZvmFdAtHgFAvfhZs6q4JQQ266", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -503,7 +503,7 @@ Response: { } }, { - "digest": "8BwgFuaepUNC7fQbsGds9zrSFKRiRUAVn3ws5vuha5hf", + "digest": "9dYFUYvV9sSWRAatiHP5nCUn2ZKX4ezu2rPh9WqNTewx", "effects": { "checkpoint": { "sequenceNumber": 3 @@ -592,7 +592,7 @@ Response: { { "cursor": "eyJjIjozLCJ0IjoyLCJpIjpmYWxzZX0", "node": { - "digest": "DnEG8FVjCxcuvDeaqRbGDepf4dAFHEUPUfuKXoBgNVPq", + "digest": "7vTAELJfuqwZ74Nrko6eqXCEBnoqbiZNxkcPLkcHDpHR", "effects": { "checkpoint": { "sequenceNumber": 2 diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp index 204726d760a..2c1ba5b563d 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp @@ -42,7 +42,7 @@ Response: { "transactions": { "nodes": [ { - "package": "0x6e0ed5e54da9e05503efb61038f2319207cefeffe96761bfe60c2c7c22b6d4a1", + "package": "0x096cee4904264f75f80f37a7593a1f2526887bcf92cef717e977b936f9d7c13a", "module": "m", "functionName": "get" } @@ -55,17 +55,17 @@ Response: { "nodes": [ { "__typename": "SharedObjectRead", - "address": "0x6234c7f86f2b7a54b6eba66e47d1a143ee6af79278e49cc3f16af445d83cface", + "address": "0xa1143dedd508b6be59c1d0a6a3c5331b9867e6c2480b74c65fd5e7e9796a76c7", "version": 2, - "digest": "8aQDNrFKDnyR8kpHpvkgrTPVG2jp3zrhjCfnbdkjUZPh", + "digest": "7T47UKUpx3AfjwVhGSEngDRMzMyv8fvWBXKzh2TNWYgY", "object": { "asMoveObject": { "contents": { "type": { - "repr": "0x6e0ed5e54da9e05503efb61038f2319207cefeffe96761bfe60c2c7c22b6d4a1::m::Foo" + "repr": "0x096cee4904264f75f80f37a7593a1f2526887bcf92cef717e977b936f9d7c13a::m::Foo" }, "json": { - "id": "0x6234c7f86f2b7a54b6eba66e47d1a143ee6af79278e49cc3f16af445d83cface", + "id": "0xa1143dedd508b6be59c1d0a6a3c5331b9867e6c2480b74c65fd5e7e9796a76c7", "x": "0" } } @@ -82,7 +82,7 @@ Response: { "transactions": { "nodes": [ { - "package": "0x6e0ed5e54da9e05503efb61038f2319207cefeffe96761bfe60c2c7c22b6d4a1", + "package": "0x096cee4904264f75f80f37a7593a1f2526887bcf92cef717e977b936f9d7c13a", "module": "m", "functionName": "inc" } @@ -102,12 +102,12 @@ Response: { "transactions": { "nodes": [ { - "package": "0x6e0ed5e54da9e05503efb61038f2319207cefeffe96761bfe60c2c7c22b6d4a1", + "package": "0x096cee4904264f75f80f37a7593a1f2526887bcf92cef717e977b936f9d7c13a", "module": "m", "functionName": "get" }, { - "package": "0x6e0ed5e54da9e05503efb61038f2319207cefeffe96761bfe60c2c7c22b6d4a1", + "package": "0x096cee4904264f75f80f37a7593a1f2526887bcf92cef717e977b936f9d7c13a", "module": "m", "functionName": "inc" } diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/system.exp b/crates/iota-graphql-e2e-tests/tests/transactions/system.exp index 84f4b210b98..8970b1e2e62 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/system.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/system.exp @@ -7,7 +7,7 @@ Response: { "transactionBlocks": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj", + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU", "sender": null, "signatures": [ "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" @@ -407,7 +407,7 @@ Response: { "json": { "id": "0x0000000000000000000000000000000000000000000000000000000000000008", "inner": { - "id": "0xef42157fdeb89d4438fe673bdb790ae751f1132b60341c6413895e75313f9621", + "id": "0x24d1d77c8cf2db0e8287ea7ce8d0570cfe7f047aebe58fd914fb529deba7d8e7", "version": "1" } } @@ -489,7 +489,7 @@ Response: { "json": { "id": "0x0000000000000000000000000000000000000000000000000000000000000403", "lists": { - "id": "0x5182a7b37339bcad67655ec3d22fb3c013d9e68765daafa4bb57c27a8f968afa", + "id": "0xc29a7b82db8f43eeadff67818fb6e3df73d7b5256d64479ded40a67239e2f306", "size": "0" } } @@ -586,14 +586,14 @@ Response: { { "cursor": "eyJpIjo5LCJjIjowfQ", "node": { - "address": "0x1d374b2388178241deedb7e6fc1727e27f25c10d394329b614486faf0bf9cf14", + "address": "0x164543b649913354b964a147ef6abd20991322f9630ea7cd66ada911e9dc0f55", "asMoveObject": { "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000003::validator_cap::UnverifiedValidatorOperationCap" }, "json": { - "id": "0x1d374b2388178241deedb7e6fc1727e27f25c10d394329b614486faf0bf9cf14", + "id": "0x164543b649913354b964a147ef6abd20991322f9630ea7cd66ada911e9dc0f55", "authorizer_validator_address": "0x28f02a953f3553f51a9365593c7d4bd0643d2085f004b18c6ca9de51682b2c80" } } @@ -604,16 +604,18 @@ Response: { { "cursor": "eyJpIjoxMCwiYyI6MH0", "node": { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", + "address": "0x164fde98cd2be56bb62ee7adfbcc7d80524ed05ba8ca752b9d934f4e28a2f757", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::StakedIota" }, "json": { - "id": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", - "balance": { - "value": "300000000000000" + "id": "0x164fde98cd2be56bb62ee7adfbcc7d80524ed05ba8ca752b9d934f4e28a2f757", + "pool_id": "0x0864c1c708d6c155e7a0970c51125ca826cdbaffc4d7da56b288be18fd92194c", + "stake_activation_epoch": "0", + "principal": { + "value": "1500000000000000" } } } @@ -624,20 +626,16 @@ Response: { { "cursor": "eyJpIjoxMSwiYyI6MH0", "node": { - "address": "0x35ac025460b42e6d85fee7a6e37b0200affce71d8b0c35cbc43a03aa8b6c774c", + "address": "0x22be657ef08ce91af272278d86e8514c8c74f9f7553607356122f4004d494fce", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x35ac025460b42e6d85fee7a6e37b0200affce71d8b0c35cbc43a03aa8b6c774c", - "decimals": 9, - "name": "IOTA", - "symbol": "IOTA", - "description": "The main (gas)token of the IOTA Network.", - "icon_url": { - "url": "https://iota.org/logo.png" + "id": "0x22be657ef08ce91af272278d86e8514c8c74f9f7553607356122f4004d494fce", + "balance": { + "value": "30000000000000000" } } } @@ -648,18 +646,16 @@ Response: { { "cursor": "eyJpIjoxMiwiYyI6MH0", "node": { - "address": "0x52ca6f77a3f1f997e48af6428033ab7bbd0e5db62b3caf940c28f535d8cedd51", + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::StakedIota" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0x52ca6f77a3f1f997e48af6428033ab7bbd0e5db62b3caf940c28f535d8cedd51", - "pool_id": "0x5ab6a4146174e25a85e8b04f08064d23589cb2ab36584882ac869d14cee2fd72", - "stake_activation_epoch": "0", - "principal": { - "value": "1500000000000000" + "id": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", + "balance": { + "value": "300000000000000" } } } @@ -669,6 +665,60 @@ Response: { }, { "cursor": "eyJpIjoxMywiYyI6MH0", + "node": { + "address": "0x4506822cb9f81abf43c8cacbdfb37228d0ad200e3ac2fe16be070fc966041d93", + "asMoveObject": { + "contents": { + "type": { + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::display::Display<0x000000000000000000000000000000000000000000000000000000000000107a::nft::Nft>" + }, + "json": { + "id": "0x4506822cb9f81abf43c8cacbdfb37228d0ad200e3ac2fe16be070fc966041d93", + "fields": { + "contents": [ + { + "key": "name", + "value": "{immutable_metadata.name}" + }, + { + "key": "image_url", + "value": "{immutable_metadata.uri}" + }, + { + "key": "description", + "value": "{immutable_metadata.description}" + }, + { + "key": "creator", + "value": "{immutable_metadata.issuer_name}" + }, + { + "key": "version", + "value": "{immutable_metadata.version}" + }, + { + "key": "media_type", + "value": "{immutable_metadata.media_type}" + }, + { + "key": "collection_name", + "value": "{immutable_metadata.collection_name}" + }, + { + "key": "immutable_issuer", + "value": "{immutable_issuer}" + } + ] + }, + "version": 1 + } + } + }, + "asMovePackage": null + } + }, + { + "cursor": "eyJpIjoxNCwiYyI6MH0", "node": { "address": "0x5a6383eb592bab4ff7c037a2118c514149ba9a86cf5a3b019c7034686365183f", "asMoveObject": { @@ -706,7 +756,7 @@ Response: { } }, { - "cursor": "eyJpIjoxNCwiYyI6MH0", + "cursor": "eyJpIjoxNSwiYyI6MH0", "node": { "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", "asMoveObject": { @@ -723,7 +773,7 @@ Response: { "system_state_version": "1", "iota_treasury_cap": { "inner": { - "id": "0x81ea4dfdaddc4ededde997f93a1a7e3e7f98695f1c5b7c7cdaeb5a38fb9fb30d", + "id": "0x2ee652c2754759646d1972886880312a7cda3ede4f93cb3a3118d6aa4219ffd9", "total_supply": { "value": "31800000000000000" } @@ -970,15 +1020,15 @@ Response: { "next_epoch_p2p_address": null, "next_epoch_primary_address": null, "extra_fields": { - "id": "0x06ddfd7b8ab4a0891ebc62c0b771bdec2b59af258f3b2a12de0d84f7d8a37699", + "id": "0x1f005968561fd56673ae2155125bafb54081fa87c18b356adc546cb905e4e5d9", "size": "0" } }, "voting_power": "10000", - "operation_cap_id": "0x1d374b2388178241deedb7e6fc1727e27f25c10d394329b614486faf0bf9cf14", + "operation_cap_id": "0x164543b649913354b964a147ef6abd20991322f9630ea7cd66ada911e9dc0f55", "gas_price": "1000", "staking_pool": { - "id": "0x5ab6a4146174e25a85e8b04f08064d23589cb2ab36584882ac869d14cee2fd72", + "id": "0x0864c1c708d6c155e7a0970c51125ca826cdbaffc4d7da56b288be18fd92194c", "activation_epoch": "0", "deactivation_epoch": null, "iota_balance": "1500000000000000", @@ -987,14 +1037,14 @@ Response: { }, "pool_token_balance": "1500000000000000", "exchange_rates": { - "id": "0xca03c453f01fbd87ec2c63fb95aeca4faa3c4ff8483baba6fb78ab9fc1c69faf", + "id": "0x76d10d2729a373b2a16a7b12ada4cb288096607ca5db6644e469ef2f8ff34caf", "size": "1" }, "pending_stake": "0", "pending_total_iota_withdraw": "0", "pending_pool_token_withdraw": "0", "extra_fields": { - "id": "0x44bd0c23568c02944afed13eda779d56eec115bd99ba7bbb96255e1cb1c4178a", + "id": "0x76d2afde916b94248cd4e4d55b9478bc848763948f4f12365ee502ba722125b1", "size": "0" } }, @@ -1003,35 +1053,35 @@ Response: { "next_epoch_gas_price": "1000", "next_epoch_commission_rate": "200", "extra_fields": { - "id": "0x6129e687b20a8f484d15b93b327ddb26de5dcbe992ac83f3561b68b65a8b2617", + "id": "0x978432933f983e85d3ef9ce16c0bb67a4a875046b29dd22226f640c5639ccb01", "size": "0" } } ], "pending_active_validators": { "contents": { - "id": "0x1c918f720eb4a65f37367e78da108374c50083e4485ba07e7dad7859d049b8f8", + "id": "0xb716eb4bce123aadc66105d5859d2c3114dca881685c9a84acd4e07656ebdf8a", "size": "0" } }, "pending_removals": [], "staking_pool_mappings": { - "id": "0x0f72bbffc7fd877cf2f57ac6e1e78353be0d0bd6a38d1a184061ef0861bdc4ff", + "id": "0xbc57cf108e5ecee288f42140e2cb3ea2a16bb8bc2fd7b5a0d4021c00cbe6e3d8", "size": "1" }, "inactive_validators": { - "id": "0xe8955a2930d4793cf5e68afffd5c9f27a68ff151c01feb49c77e67ce8a31593e", + "id": "0xf577144c5ff919d936861c1166a8c496718385c0e57115136793083614bc2ef0", "size": "0" }, "validator_candidates": { - "id": "0xe840df5cacaed83166baeecadacf2316c3979d7155ecbcf0299ab9e1c0b0d532", + "id": "0xb04677f6695c5e131ed1b8cd133adb262ac2dc9a7960ede50e517ccd4dc426ae", "size": "0" }, "at_risk_validators": { "contents": [] }, "extra_fields": { - "id": "0x5f98212b9cdb9cba1d9ba97f4f52bfe1997198e4b6539c4fa2e3f5fafd84ad4b", + "id": "0x7493afc9c157ae26cbc879abccdd59f84cc88fb40debe77faa1396ab1387d453", "size": "0" } }, @@ -1052,7 +1102,7 @@ Response: { "validator_very_low_stake_threshold": "1000000000000000", "validator_low_stake_grace_period": "7", "extra_fields": { - "id": "0xb8b3e8baec894e61f739d0f15b9fd88b1af0d00a90c93bfdec900fd1391dde11", + "id": "0x5616b320d1dd6045f7815b0e9d0320553ea5f6ec1ccfeff416d1905773d5e56f", "size": "0" } }, @@ -1071,7 +1121,7 @@ Response: { "safe_mode_non_refundable_storage_fee": "0", "epoch_start_timestamp_ms": "0", "extra_fields": { - "id": "0xef00817bc6382ce2415ad92e42b2f84feea5a99ea5c531f47f8ff2a7b615a6ec", + "id": "0xd9df1aea7a90f4388b31784ef575031c1b909092e39374e0899b214cab3e5698", "size": "0" } } @@ -1082,16 +1132,16 @@ Response: { } }, { - "cursor": "eyJpIjoxNSwiYyI6MH0", + "cursor": "eyJpIjoxNiwiYyI6MH0", "node": { - "address": "0x7a96da86a0ce7795c9e036e93db26dc4c6a3d87d2bb59396c25e261cf8c985ae", + "address": "0xa4c01792653d7a84243b6c30c98b749b84fd12b685572861fd30e3f4c0296719", "asMoveObject": { "contents": { "type": { "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000002::random::RandomInner>" }, "json": { - "id": "0x7a96da86a0ce7795c9e036e93db26dc4c6a3d87d2bb59396c25e261cf8c985ae", + "id": "0xa4c01792653d7a84243b6c30c98b749b84fd12b685572861fd30e3f4c0296719", "name": "1", "value": { "version": "1", @@ -1105,38 +1155,21 @@ Response: { "asMovePackage": null } }, - { - "cursor": "eyJpIjoxNiwiYyI6MH0", - "node": { - "address": "0x9c4468be862acb4b396c6a96c41a5d44168e92bad427d23ade2b365c4d0342fa", - "asMoveObject": { - "contents": { - "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<0x0000000000000000000000000000000000000000000000000000000000000002::object::ID,address>" - }, - "json": { - "id": "0x9c4468be862acb4b396c6a96c41a5d44168e92bad427d23ade2b365c4d0342fa", - "name": "0x5ab6a4146174e25a85e8b04f08064d23589cb2ab36584882ac869d14cee2fd72", - "value": "0x28f02a953f3553f51a9365593c7d4bd0643d2085f004b18c6ca9de51682b2c80" - } - } - }, - "asMovePackage": null - } - }, { "cursor": "eyJpIjoxNywiYyI6MH0", "node": { - "address": "0xa63010b93d31c3ae2c27903c7f4d9718bf917aaf6f2520925aa4a5da0cf0dcb0", + "address": "0xa94dd3c09813d05780c293e3382b1b1cdc93babec321926f6d9aeedf74e3811a", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::Coin<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" }, "json": { - "id": "0xa63010b93d31c3ae2c27903c7f4d9718bf917aaf6f2520925aa4a5da0cf0dcb0", - "balance": { - "value": "30000000000000000" + "id": "0xa94dd3c09813d05780c293e3382b1b1cdc93babec321926f6d9aeedf74e3811a", + "name": "0", + "value": { + "iota_amount": "0", + "pool_token_amount": "0" } } } @@ -1147,51 +1180,16 @@ Response: { { "cursor": "eyJpIjoxOCwiYyI6MH0", "node": { - "address": "0xe385e8c7898861f3a60d3f9806e89b204757cee320e02faf0aa341622ecf9c07", + "address": "0xcfd7d941c2ab08ab7dcdf9a831411d7e0e8f10c2cb6fd19783ba99a38323d53d", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::display::Display<0x000000000000000000000000000000000000000000000000000000000000107a::nft::Nft>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<0x0000000000000000000000000000000000000000000000000000000000000002::object::ID,address>" }, "json": { - "id": "0xe385e8c7898861f3a60d3f9806e89b204757cee320e02faf0aa341622ecf9c07", - "fields": { - "contents": [ - { - "key": "name", - "value": "{immutable_metadata.name}" - }, - { - "key": "image_url", - "value": "{immutable_metadata.uri}" - }, - { - "key": "description", - "value": "{immutable_metadata.description}" - }, - { - "key": "creator", - "value": "{immutable_metadata.issuer_name}" - }, - { - "key": "version", - "value": "{immutable_metadata.version}" - }, - { - "key": "media_type", - "value": "{immutable_metadata.media_type}" - }, - { - "key": "collection_name", - "value": "{immutable_metadata.collection_name}" - }, - { - "key": "immutable_issuer", - "value": "{immutable_issuer}" - } - ] - }, - "version": 1 + "id": "0xcfd7d941c2ab08ab7dcdf9a831411d7e0e8f10c2cb6fd19783ba99a38323d53d", + "name": "0x0864c1c708d6c155e7a0970c51125ca826cdbaffc4d7da56b288be18fd92194c", + "value": "0x28f02a953f3553f51a9365593c7d4bd0643d2085f004b18c6ca9de51682b2c80" } } }, @@ -1201,18 +1199,20 @@ Response: { { "cursor": "eyJpIjoxOSwiYyI6MH0", "node": { - "address": "0xe7597ac5ed82f4205bfdb093ad2c7c77d28eda56ef23ac930b4938283f26beb0", + "address": "0xe79a6389aa886d0ddf0e05c724fbe0035567341462dc605dece502d718fee58c", "asMoveObject": { "contents": { "type": { - "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::dynamic_field::Field<u64,0x0000000000000000000000000000000000000000000000000000000000000003::staking_pool::PoolTokenExchangeRate>" + "repr": "0x0000000000000000000000000000000000000000000000000000000000000002::coin::CoinMetadata<0x0000000000000000000000000000000000000000000000000000000000000002::iota::IOTA>" }, "json": { - "id": "0xe7597ac5ed82f4205bfdb093ad2c7c77d28eda56ef23ac930b4938283f26beb0", - "name": "0", - "value": { - "iota_amount": "0", - "pool_token_amount": "0" + "id": "0xe79a6389aa886d0ddf0e05c724fbe0035567341462dc605dece502d718fee58c", + "decimals": 9, + "name": "IOTA", + "symbol": "IOTA", + "description": "The main (gas)token of the IOTA Network.", + "icon_url": { + "url": "https://iota.org/logo.png" } } } @@ -1260,7 +1260,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000001", - "digest": "7i1FMsDo6mv9yjdpnWED9QQEL12F1Dx3cubJ9CxTifJN" + "digest": "7t5eREdeveVhXiphTSH16JMYGartqmVPQWY3zjViwAjG" } }, { @@ -1269,7 +1269,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000002", - "digest": "AaLjcUiSh4jt3rx49wCBhyXQAVhPGyChLWbfFavRRsZH" + "digest": "HEV5QxCaKrpdBrWCEXQcWCC2m9eJnXPQswbmrodQx7Ni" } }, { @@ -1278,7 +1278,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000003", - "digest": "Ahy5BuNfqeg4NoLLpawgBz2B6zyYzbzVrfXL9wJnYGys" + "digest": "6HfZ1jXdx6iaM6Bh8fkaxKoGHRCd6sqmcFRnKhChboAv" } }, { @@ -1287,7 +1287,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000005", - "digest": "6rnrYMn8qAXCD3Abcapm2EgtjZ89hZpwXVQJr8WHT9t5" + "digest": "AdSjwju2A8LG7YKHGxZuDuuxQbWW99yUUkT6pVVTUisY" } }, { @@ -1296,7 +1296,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000006", - "digest": "Gp5z7nY13u5RZtDuFQKtHuqpLAio2UdFkhdrXcPDiDrX" + "digest": "58U3s6MXxnYNnvH1H8u6d9viT2YMCo8fk4R7SvKh6Yoe" } }, { @@ -1305,7 +1305,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000008", - "digest": "HWJ8Zmc31gssueLEKhoE4Ygv6x1GvEXTKdxsdZxdyDnP" + "digest": "7NPs6HDSJe4QiTeQETsPS6KbRDanjNps8TfG6gFaVVb1" } }, { @@ -1314,7 +1314,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x000000000000000000000000000000000000000000000000000000000000000b", - "digest": "6BzaTtZsW3NDk1H28As9eaoLEJAtUU2wHNtV4Rb6ecBB" + "digest": "BoLqhWNbdUBh4mtWRNarbLA8tWrbhy95jC7CYbxVRCfm" } }, { @@ -1323,7 +1323,7 @@ Response: { "idDeleted": false, "outputState": { "address": "0x0000000000000000000000000000000000000000000000000000000000000403", - "digest": "H8pFmNzsvczqqXYXp1sEWvnWWuDjSPw8nHMzxYkguXs1" + "digest": "4wePeC4cHrp5scKUdJNy1haspXufoLQ3kPtcK2zUNEqL" } }, { @@ -1332,106 +1332,106 @@ Response: { "idDeleted": false, "outputState": { "address": "0x000000000000000000000000000000000000000000000000000000000000107a", - "digest": "Eaqbi9s7j9UyRsnSnaJsXFmjZRJsKCDvsKyeUXu4ve6r" + "digest": "8pUWWeUkTFD5J4tX8CpAhLmaJcNineQ1zSaefhgg5Hv8" } }, { - "address": "0x1d374b2388178241deedb7e6fc1727e27f25c10d394329b614486faf0bf9cf14", + "address": "0x164543b649913354b964a147ef6abd20991322f9630ea7cd66ada911e9dc0f55", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x1d374b2388178241deedb7e6fc1727e27f25c10d394329b614486faf0bf9cf14", - "digest": "GZ8xzBNn7Qxzr64sANdqENqcvyBvsXwSWrhNRBCvYPkF" + "address": "0x164543b649913354b964a147ef6abd20991322f9630ea7cd66ada911e9dc0f55", + "digest": "FVCjciJs2aNy4M4E3TouV8TvwYhKVDKWWxg5KZTb3gHH" } }, { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", + "address": "0x164fde98cd2be56bb62ee7adfbcc7d80524ed05ba8ca752b9d934f4e28a2f757", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x2da8747fe6350b4147ffcf8488e97671c13a3f9b1c3f9694f86f0c85c7a6353f", - "digest": "A4XgGGNvymUQcesse4tmB6WCvqAcYKUNKGQpDBqj82Sn" + "address": "0x164fde98cd2be56bb62ee7adfbcc7d80524ed05ba8ca752b9d934f4e28a2f757", + "digest": "2Ctzx94bqHbkFuk1quNjLnv8vEyJGLK4vACVLviXDqFv" } }, { - "address": "0x35ac025460b42e6d85fee7a6e37b0200affce71d8b0c35cbc43a03aa8b6c774c", + "address": "0x22be657ef08ce91af272278d86e8514c8c74f9f7553607356122f4004d494fce", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x35ac025460b42e6d85fee7a6e37b0200affce71d8b0c35cbc43a03aa8b6c774c", - "digest": "CqtUtJZu9cxdXSqfHhBPQvyigA4BhVrhV91S1hM5siYG" + "address": "0x22be657ef08ce91af272278d86e8514c8c74f9f7553607356122f4004d494fce", + "digest": "DP74frFMDDzzgodfk1wjvRbaB36RCknTtgyGQ7cQtCaP" } }, { - "address": "0x52ca6f77a3f1f997e48af6428033ab7bbd0e5db62b3caf940c28f535d8cedd51", + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x52ca6f77a3f1f997e48af6428033ab7bbd0e5db62b3caf940c28f535d8cedd51", - "digest": "5yuofcVQJP6rzVu9i9Zv8tbuZMF3HZ6ubsb4VQNbxdZa" + "address": "0x25907b13da722ae96c503c5e5917d6d31d876ffc782e6058fa61812e01a82caf", + "digest": "6CFVxDS8LrXuawcUv8ibh8xNBBETW5b7j8bZggexpsKh" } }, { - "address": "0x5a6383eb592bab4ff7c037a2118c514149ba9a86cf5a3b019c7034686365183f", + "address": "0x4506822cb9f81abf43c8cacbdfb37228d0ad200e3ac2fe16be070fc966041d93", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x5a6383eb592bab4ff7c037a2118c514149ba9a86cf5a3b019c7034686365183f", - "digest": "EpKiYNrMK5G3nYvmzQ9e5Q94zCLbGHi3zUJgVRXRfYn9" + "address": "0x4506822cb9f81abf43c8cacbdfb37228d0ad200e3ac2fe16be070fc966041d93", + "digest": "5CopmEKWTXdw7rS96awWbgE6aaFogJpQyaavmPCfKZ4n" } }, { - "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + "address": "0x5a6383eb592bab4ff7c037a2118c514149ba9a86cf5a3b019c7034686365183f", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", - "digest": "D4QStVhLnUvKjbRc8d3NVFULK7Rc1wezTLj2LGju8zhs" + "address": "0x5a6383eb592bab4ff7c037a2118c514149ba9a86cf5a3b019c7034686365183f", + "digest": "9Q9dXMqjCXWpPde6wNeUDdyAtE136UDTDj28gnoFZaTY" } }, { - "address": "0x7a96da86a0ce7795c9e036e93db26dc4c6a3d87d2bb59396c25e261cf8c985ae", + "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x7a96da86a0ce7795c9e036e93db26dc4c6a3d87d2bb59396c25e261cf8c985ae", - "digest": "58UyLyJEaEnw8Mxik5BfcgLDVCXV76yM6fR2rC3asMsT" + "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + "digest": "7MoUo8k3tJT1bWssk7rjjxpcu1s7QcvFo3VoffyG1S8G" } }, { - "address": "0x9c4468be862acb4b396c6a96c41a5d44168e92bad427d23ade2b365c4d0342fa", + "address": "0xa4c01792653d7a84243b6c30c98b749b84fd12b685572861fd30e3f4c0296719", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x9c4468be862acb4b396c6a96c41a5d44168e92bad427d23ade2b365c4d0342fa", - "digest": "HqJCkhWuVWJrKDH91kCjpjk2zG2K91SAyAkdYoUxTVys" + "address": "0xa4c01792653d7a84243b6c30c98b749b84fd12b685572861fd30e3f4c0296719", + "digest": "u7rqgVkqzDAxCB2gExvsqEGJ524Q3e38qKfvogMuLkF" } }, { - "address": "0xa63010b93d31c3ae2c27903c7f4d9718bf917aaf6f2520925aa4a5da0cf0dcb0", + "address": "0xa94dd3c09813d05780c293e3382b1b1cdc93babec321926f6d9aeedf74e3811a", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xa63010b93d31c3ae2c27903c7f4d9718bf917aaf6f2520925aa4a5da0cf0dcb0", - "digest": "BqgrY1VVv7rheFGwUgixcdtM2vbMaPxsuKZfaQWuZTVh" + "address": "0xa94dd3c09813d05780c293e3382b1b1cdc93babec321926f6d9aeedf74e3811a", + "digest": "13RoXNUZ5WwTo1NscxtwK3VEpFamzt75fJnbUwHRLCcu" } }, { - "address": "0xe385e8c7898861f3a60d3f9806e89b204757cee320e02faf0aa341622ecf9c07", + "address": "0xcfd7d941c2ab08ab7dcdf9a831411d7e0e8f10c2cb6fd19783ba99a38323d53d", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xe385e8c7898861f3a60d3f9806e89b204757cee320e02faf0aa341622ecf9c07", - "digest": "DYAuGuAgqSZ7srmpcuFLWbHdzc613fjjBKXThma4MTwi" + "address": "0xcfd7d941c2ab08ab7dcdf9a831411d7e0e8f10c2cb6fd19783ba99a38323d53d", + "digest": "CS4gaZ1gomkBtFJHuyLy2M4GqPyEcaKgapbZKhugng7G" } }, { - "address": "0xe7597ac5ed82f4205bfdb093ad2c7c77d28eda56ef23ac930b4938283f26beb0", + "address": "0xe79a6389aa886d0ddf0e05c724fbe0035567341462dc605dece502d718fee58c", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0xe7597ac5ed82f4205bfdb093ad2c7c77d28eda56ef23ac930b4938283f26beb0", - "digest": "35SRHoyvsjDZcG7rjEkYtofmd9wjv48b9KwJYrux31H5" + "address": "0xe79a6389aa886d0ddf0e05c724fbe0035567341462dc605dece502d718fee58c", + "digest": "BfYdua4BJQZYzZU42khQKxScWpA9Fcy6tAsYvg2mebKx" } } ] @@ -1453,7 +1453,7 @@ Response: { "sequenceNumber": 0 }, "transactionBlock": { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } }, "expiration": null @@ -1505,7 +1505,7 @@ Response: { "dependencies": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } ] }, @@ -1605,7 +1605,7 @@ Response: { "dependencies": { "nodes": [ { - "digest": "A47B3FAttYy3F2YU1xp9uiMPHw7D8VAaf46hNRuDBEKj" + "digest": "AvGrCUgFax9RAmxhyJDrMt8tNHMVBmThpSvPaPLXuJwU" } ] }, @@ -1624,30 +1624,30 @@ Response: { } }, { - "address": "0x4509fa198370254af0418248c9718bb206e810e1bce9fc8ffd0c500aef972f4d", + "address": "0x362f837fd7f4366332da1a18f0b8654b35cc6ac63bb31984a26611c2a8078a8c", "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x4509fa198370254af0418248c9718bb206e810e1bce9fc8ffd0c500aef972f4d", - "digest": "HrsNiAMHZR19VR1QZiA6TFUykuvkJNnDbRBbwT84YpLp" + "address": "0x362f837fd7f4366332da1a18f0b8654b35cc6ac63bb31984a26611c2a8078a8c", + "digest": "GaibbJXpxDKn5Ub2zPcmPPUpRuL1B6Dqa3NPQTErip4v" } }, { - "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", - "idCreated": false, + "address": "0x4509fa198370254af0418248c9718bb206e810e1bce9fc8ffd0c500aef972f4d", + "idCreated": true, "idDeleted": false, "outputState": { - "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", - "digest": "4djXwCeBNeRBWfjoRd1aAY4sJ7ozbDfyQVyvwxC5TD1m" + "address": "0x4509fa198370254af0418248c9718bb206e810e1bce9fc8ffd0c500aef972f4d", + "digest": "6GAfTvEEHExCA5FgbjmJVPvg1cEH77YFZj7YNBErFbeC" } }, { - "address": "0xebf30a2e1b16f55fffb5ee6bac392da81d6dd66242d03d7465fd6eb0b6fa8664", - "idCreated": true, + "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + "idCreated": false, "idDeleted": false, "outputState": { - "address": "0xebf30a2e1b16f55fffb5ee6bac392da81d6dd66242d03d7465fd6eb0b6fa8664", - "digest": "3aANSDLVrDZApaoswGbTrTuhGvspix26DgExPqkZHysT" + "address": "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + "digest": "Bj9bnf5eYSVQLfpFLEtj7xVzoDdSKDVJxy5qCMjo8Cjk" } } ] diff --git a/crates/iota-graphql-rpc/src/types/validator.rs b/crates/iota-graphql-rpc/src/types/validator.rs index 4bf76f499bf..350d5ce9d9a 100644 --- a/crates/iota-graphql-rpc/src/types/validator.rs +++ b/crates/iota-graphql-rpc/src/types/validator.rs @@ -10,7 +10,7 @@ use async_graphql::{ *, }; use iota_indexer::apis::{GovernanceReadApi, governance_api::exchange_rates}; -use iota_json_rpc::governance_api::average_apy_from_exchange_rates; +use iota_json_rpc::governance_api::median_apy_from_exchange_rates; use iota_types::{ base_types::IotaAddress as NativeIotaAddress, committee::EpochId, @@ -388,7 +388,7 @@ impl Validator { .iter() .map(|(_, exchange_rate)| exchange_rate); - let avg_apy = Some(average_apy_from_exchange_rates(rates)); + let avg_apy = Some(median_apy_from_exchange_rates(rates)); Ok(avg_apy.map(|x| (x * 10000.0) as u64)) } diff --git a/crates/iota-indexer/migrations/pg/2023-08-19-044023_objects/up.sql b/crates/iota-indexer/migrations/pg/2023-08-19-044023_objects/up.sql index 4e5fb68b2fd..48532159a22 100644 --- a/crates/iota-indexer/migrations/pg/2023-08-19-044023_objects/up.sql +++ b/crates/iota-indexer/migrations/pg/2023-08-19-044023_objects/up.sql @@ -102,5 +102,6 @@ CREATE INDEX objects_snapshot_checkpoint_sequence_number ON objects_snapshot (ch CREATE INDEX objects_snapshot_owner ON objects_snapshot (owner_type, owner_id, object_id) WHERE owner_type BETWEEN 1 AND 2 AND owner_id IS NOT NULL; CREATE INDEX objects_snapshot_coin_owner ON objects_snapshot (owner_id, coin_type, object_id) WHERE coin_type IS NOT NULL AND owner_type = 1; CREATE INDEX objects_snapshot_coin_only ON objects_snapshot (coin_type, object_id) WHERE coin_type IS NOT NULL; -CREATE INDEX objects_snapshot_package_module_name_full_type ON objects_snapshot (object_type_package, object_type_module, object_type_name, object_type); +CREATE INDEX objects_snapshot_type_id ON objects_snapshot (object_type_package, object_type_module, object_type_name, object_type, object_id); +CREATE INDEX objects_snapshot_id_type ON objects_snapshot (object_id, object_type_package, object_type_module, object_type_name, object_type); CREATE INDEX objects_snapshot_owner_package_module_name_full_type ON objects_snapshot (owner_id, object_type_package, object_type_module, object_type_name, object_type); diff --git a/crates/iota-json-rpc-api/src/read.rs b/crates/iota-json-rpc-api/src/read.rs index 4798ae83f5d..9a78978d672 100644 --- a/crates/iota-json-rpc-api/src/read.rs +++ b/crates/iota-json-rpc-api/src/read.rs @@ -88,6 +88,13 @@ pub trait ReadApi { /// version exists/existed. The result may vary across nodes depending /// on their pruning policies. Returns the latest object information /// with a version less than or equal to the given version + // Note that this endpoint is used by iota replay tool. Also the + // implementation in `iota-json-rpc` uses internally the + // `AuthorityState::find_object_lt_or_eq_version` method, which has + // underlying utility, e.g., `RemoteFetcher::get_child_object` uses + // `try_get_object_before_version` to get the object with the versions <= + // the given version. We have the `deprecated` flag here to not expose it in + // the generated spec file, and it should be only for internal usage. #[method(name = "tryGetObjectBeforeVersion", deprecated = "true")] async fn try_get_object_before_version( &self, diff --git a/crates/iota-json-rpc/Cargo.toml b/crates/iota-json-rpc/Cargo.toml index 59f00a802b4..531ebeaf489 100644 --- a/crates/iota-json-rpc/Cargo.toml +++ b/crates/iota-json-rpc/Cargo.toml @@ -27,6 +27,7 @@ prometheus.workspace = true serde.workspace = true serde_json.workspace = true signature.workspace = true +statrs = "0.17.1" tap.workspace = true thiserror.workspace = true tokio = { workspace = true, features = ["full"] } diff --git a/crates/iota-json-rpc/src/governance_api.rs b/crates/iota-json-rpc/src/governance_api.rs index 2f7070a78e8..86d88d0aeb3 100644 --- a/crates/iota-json-rpc/src/governance_api.rs +++ b/crates/iota-json-rpc/src/governance_api.rs @@ -33,6 +33,7 @@ use iota_types::{ }; use itertools::Itertools; use jsonrpsee::{RpcModule, core::RpcResult}; +use statrs::statistics::{Data, Median}; use tracing::{info, instrument}; use crate::{ @@ -439,18 +440,21 @@ pub fn calculate_apys(exchange_rate_table: Vec<ValidatorExchangeRates>) -> Vec<V for rates in exchange_rate_table.into_iter().filter(|r| r.active) { let exchange_rates = rates.rates.iter().map(|(_, rate)| rate); - let average_apy = average_apy_from_exchange_rates(exchange_rates); + let median_apy = median_apy_from_exchange_rates(exchange_rates); apys.push(ValidatorApy { address: rates.address, - apy: average_apy, + apy: median_apy, }); } apys } -/// Calculate an APY for a validator based on the exchange rates of the staking +/// Calculate the APY for a validator based on the exchange rates of the staking /// pool. -pub fn average_apy_from_exchange_rates<'er>( +/// +/// The calculation uses the median value of the sample, to filter out +/// outliers introduced by large staking/unstaking events. +pub fn median_apy_from_exchange_rates<'er>( exchange_rates: impl DoubleEndedIterator<Item = &'er PoolTokenExchangeRate> + Clone, ) -> f64 { // rates are sorted by epoch in descending order. @@ -462,15 +466,14 @@ pub fn average_apy_from_exchange_rates<'er>( let apy = calculate_apy(er, er_next); (apy > 0.0).then_some(apy) }) - .take(30) + .take(90) .collect::<Vec<_>>(); if apys.is_empty() { // not enough data points 0.0 } else { - let apy_counts = apys.len() as f64; - apys.iter().sum::<f64>() / apy_counts + Data::new(apys).median() } } @@ -617,3 +620,39 @@ impl IotaRpcModule for GovernanceReadApi { GovernanceReadApiOpenRpc::module_doc() } } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn calculate_apys_with_outliers() { + let file = + std::fs::File::open("src/unit_tests/data/validator_exchange_rate/rates.json").unwrap(); + let rates: BTreeMap<String, Vec<(u64, PoolTokenExchangeRate)>> = + serde_json::from_reader(file).unwrap(); + + let mut address_map = BTreeMap::new(); + + let exchange_rates = rates + .into_iter() + .map(|(validator, rates)| { + let address = IotaAddress::random_for_testing_only(); + address_map.insert(address, validator); + ValidatorExchangeRates { + address, + pool_id: ObjectID::random(), + active: true, + rates, + } + }) + .collect(); + + let apys = calculate_apys(exchange_rates); + + for apy in &apys { + println!("{}: {}", address_map[&apy.address], apy.apy); + assert!(apy.apy < 0.25) + } + } +} diff --git a/crates/iota-json-rpc/src/unit_tests/data/validator_exchange_rate/rates.json b/crates/iota-json-rpc/src/unit_tests/data/validator_exchange_rate/rates.json new file mode 100644 index 00000000000..caf4bd4dd2b --- /dev/null +++ b/crates/iota-json-rpc/src/unit_tests/data/validator_exchange_rate/rates.json @@ -0,0 +1 @@ +{"01node":[[167,{"iota_amount":35899352829617961,"pool_token_amount":35167964851472947}],[166,{"iota_amount":35894635008379974,"pool_token_amount":35167589707247808}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":35866428578351272,"pool_token_amount":35165428023127803}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":35856795079957317,"pool_token_amount":35164663337242363}],[156,{"iota_amount":35847171423859400,"pool_token_amount":35163907355994735}],[155,{"iota_amount":35842259838498301,"pool_token_amount":35163521931965938}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35832323095869636,"pool_token_amount":35162550065203222}],[149,{"iota_amount":35813022905267424,"pool_token_amount":35160987430070301}],[148,{"iota_amount":35807463745655398,"pool_token_amount":35159876066304843}],[146,{"iota_amount":35797885586783620,"pool_token_amount":35159170792411269}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35781672931381071,"pool_token_amount":35161017940266929}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":35776757993525179,"pool_token_amount":35160631564962536}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[130,{"iota_amount":35722772619255235,"pool_token_amount":35156402658387802}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":35711191416942195,"pool_token_amount":35149371306178667}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":35697871063613660,"pool_token_amount":35149442536686591}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35681930276104481,"pool_token_amount":35146834152140152}],[121,{"iota_amount":35673342931448668,"pool_token_amount":35147104822309087}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":35654083137501737,"pool_token_amount":35145765162012789}],[116,{"iota_amount":35649170657616036,"pool_token_amount":35145378684309259}],[115,{"iota_amount":35644452365695873,"pool_token_amount":35145183937266114}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":35634728237482068,"pool_token_amount":35144510894842630}],[112,{"iota_amount":35628748498077351,"pool_token_amount":35143072321402701}],[109,{"iota_amount":35611905496842073,"pool_token_amount":35140337533651238}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35589966297680344,"pool_token_amount":35138670365169253}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35584282756016771,"pool_token_amount":35138225106374292}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":35526717640965292,"pool_token_amount":35131806722393544}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35521303474503238,"pool_token_amount":35131383868716957}],[91,{"iota_amount":35510474574512078,"pool_token_amount":35130527004684915}],[89,{"iota_amount":35499596115808720,"pool_token_amount":35129581321508401}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35467230513826377,"pool_token_amount":35126964014889569}],[81,{"iota_amount":35456345039098400,"pool_token_amount":35125918326891889}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35450769381797069,"pool_token_amount":35125365328264671}],[78,{"iota_amount":35439234897586982,"pool_token_amount":35123670599410786}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35389945306716957,"pool_token_amount":35119514866241807}],[68,{"iota_amount":35384479435091140,"pool_token_amount":35119163753307465}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[61,{"iota_amount":35346141703824881,"pool_token_amount":35115817084513559}],[60,{"iota_amount":35340805935962004,"pool_token_amount":35115393004614797}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":35278566657180210,"pool_token_amount":35102418052806218}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35267358941663083,"pool_token_amount":35101033364695387}],[47,{"iota_amount":35262027719785051,"pool_token_amount":35100611713369984}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":35219950114669908,"pool_token_amount":35103411341100541}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35208904991784491,"pool_token_amount":35102522980624148}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[31,{"iota_amount":35179804004997458,"pool_token_amount":35100742441498602}],[29,{"iota_amount":35467223071507847,"pool_token_amount":35399577747655396}],[26,{"iota_amount":35145181142328545,"pool_token_amount":35097583828526451}],[24,{"iota_amount":35061152124115585,"pool_token_amount":35028470602959208}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000031979264,"pool_token_amount":25000000000639572}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}]],"A41":[[167,{"iota_amount":27565797795973335,"pool_token_amount":27028771266450611}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27570988699825350,"pool_token_amount":27037046929509186}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27553351035026007,"pool_token_amount":27035670831590609}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":27512312303009122,"pool_token_amount":27031341388344369}],[148,{"iota_amount":27501705047152318,"pool_token_amount":27027479686385565}],[147,{"iota_amount":27497992476580722,"pool_token_amount":27027113946092485}],[146,{"iota_amount":27494285700456241,"pool_token_amount":27026754050027824}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27487061166244646,"pool_token_amount":27026046529488669}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27476330254021937,"pool_token_amount":27025080727677398}],[140,{"iota_amount":27472718971359752,"pool_token_amount":27024725529813471}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27472043566383301,"pool_token_amount":27033661873253587}],[136,{"iota_amount":27468428307748456,"pool_token_amount":27033306115789485}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":27457595374938662,"pool_token_amount":27032245149447796}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27440490411762611,"pool_token_amount":27031421635223684}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27436893047193011,"pool_token_amount":27031081831422650}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27411617845010411,"pool_token_amount":27028598005480033}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27397175339106152,"pool_token_amount":27027172793016629}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27393565173970705,"pool_token_amount":27026816651699294}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27386344762381823,"pool_token_amount":27026104234305114}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27375500086580902,"pool_token_amount":27025023279725843}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27384350632639936,"pool_token_amount":27040895219174179}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27367622471924243,"pool_token_amount":27039243030388432}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":27350656048228135,"pool_token_amount":27037570842598090}],[98,{"iota_amount":27342410413461125,"pool_token_amount":27036757447809085}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27313459808425425,"pool_token_amount":27033907906923433}],[90,{"iota_amount":27310957366889275,"pool_token_amount":27035035218211974}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27306914055767692,"pool_token_amount":27034634971561982}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":27294799187434493,"pool_token_amount":27033435403657578}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27289494690351082,"pool_token_amount":27031763094695012}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27271820395297662,"pool_token_amount":27028542724790202}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27259445090001113,"pool_token_amount":27027193872465250}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27247432991980248,"pool_token_amount":27025996492303658}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":27247945102257861,"pool_token_amount":27030077055639129}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27216337605333506,"pool_token_amount":27025314036515480}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27212003616707252,"pool_token_amount":27024883679550149}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":27191969876884773,"pool_token_amount":27019588521613874}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27166125409771648,"pool_token_amount":27004638726859948}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27120210053332182,"pool_token_amount":26995383251432965}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27107627867288215,"pool_token_amount":27004962454692101}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":27098562165947582,"pool_token_amount":27003305482367730}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27086218526696561,"pool_token_amount":27002071083781656}],[37,{"iota_amount":27081998987719701,"pool_token_amount":27001659418114157}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27057970258189577,"pool_token_amount":26997774075236993}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27044174160138780,"pool_token_amount":26996389240972581}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":20023367414445940,"pool_token_amount":20001786010006704}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20009758488195300,"pool_token_amount":20000598798782603}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004677735991001,"pool_token_amount":20000103331086132}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015774701,"pool_token_amount":20000000000315481}],[17,{"iota_amount":20000000012328401,"pool_token_amount":20000000000246557}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"ANodes":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35776912762248031,"pool_token_amount":35076572465911553}],[161,{"iota_amount":35776516365178193,"pool_token_amount":35080336624703625}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":35771787934955269,"pool_token_amount":35079857980153053}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35766975860986207,"pool_token_amount":35079386080312534}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":35737864137765631,"pool_token_amount":35080564537901476}],[151,{"iota_amount":35727132243792307,"pool_token_amount":35074281080335284}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35682512508539158,"pool_token_amount":35068759206392545}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":35672882832158783,"pool_token_amount":35067812743747567}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":35629717333082480,"pool_token_amount":35063947453361888}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":35609588069220101,"pool_token_amount":35061413191115062}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35590331420668866,"pool_token_amount":35059903042806352}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":35580707919696605,"pool_token_amount":35059152832281300}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":35532548771963267,"pool_token_amount":35055335389180914}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35511677699193499,"pool_token_amount":35053687792337210}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":35489461473129249,"pool_token_amount":35051952326213164}],[101,{"iota_amount":35478408487180345,"pool_token_amount":35051099340719939}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35451002516035482,"pool_token_amount":35048932644271300}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35434715454817781,"pool_token_amount":35047644272561064}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35429295678033087,"pool_token_amount":35047216336294694}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":35407910958684515,"pool_token_amount":35045496355655081}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":35375745831871334,"pool_token_amount":35042935854596487}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":35327813171723261,"pool_token_amount":35039435486502309}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35272403621844127,"pool_token_amount":35034778847672262}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":35240406948357111,"pool_token_amount":35032245960105482}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35229761892216064,"pool_token_amount":35031422287895324}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35217965961883103,"pool_token_amount":35029455587337167}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":35212630512489798,"pool_token_amount":35029031036092834}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":35187307993908212,"pool_token_amount":35013602723013988}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35180933395388450,"pool_token_amount":35012143195957992}],[48,{"iota_amount":35175599279093302,"pool_token_amount":35011719430622372}],[47,{"iota_amount":35170264961734642,"pool_token_amount":35011294673397494}],[46,{"iota_amount":35164626028659785,"pool_token_amount":35010566836151741}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":35137822123488198,"pool_token_amount":35008413361728057}],[39,{"iota_amount":35126683731718677,"pool_token_amount":35007299999113715}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35110084291329007,"pool_token_amount":35005973619213076}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35085984357790107,"pool_token_amount":35003468850605816}],[31,{"iota_amount":35080051684969255,"pool_token_amount":35002957729714668}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":25042622108777768,"pool_token_amount":25013929985989569}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25029558797371582,"pool_token_amount":25012207725171793}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":25005943238434252,"pool_token_amount":25000170765339556}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000644154}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Aftermath":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":107326933123545581,"pool_token_amount":105113560956765493}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":107298584497769675,"pool_token_amount":105112451268316333}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":107284450207927809,"pool_token_amount":105111897415382603}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":107255177735401777,"pool_token_amount":105110749211025972}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":107211274260816842,"pool_token_amount":105109027957048783}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":107137043341814663,"pool_token_amount":105105128030477816}],[146,{"iota_amount":107083902945467558,"pool_token_amount":105107869576035515}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":106995939981008817,"pool_token_amount":105103208346478044}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":106981492479992000,"pool_token_amount":105102640668813979}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":106956675962719528,"pool_token_amount":105091895452746007}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":106898755428504594,"pool_token_amount":105089533686362393}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":106855108351198517,"pool_token_amount":105087552026933733}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":106826096685286558,"pool_token_amount":105086328988979437}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":106782736392211683,"pool_token_amount":105084632465584310}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":106768289350353497,"pool_token_amount":105084063773177035}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":106739392924263508,"pool_token_amount":105082926074476266}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":106724942505968547,"pool_token_amount":105082357027388350}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":106667208493604265,"pool_token_amount":105080122453542964}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":106549359730511791,"pool_token_amount":105073286476162634}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":106467649957621572,"pool_token_amount":105069988504145854}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":106453452842122193,"pool_token_amount":105071813402100574}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[99,{"iota_amount":106370409881896138,"pool_token_amount":105068606927363071}],[98,{"iota_amount":106353921370554989,"pool_token_amount":105067956412602915}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":106321131377478568,"pool_token_amount":105066690195265350}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":106222556546129616,"pool_token_amount":105061803015942703}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":106190450231860081,"pool_token_amount":105060533660928540}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":106174297918768752,"pool_token_amount":105059895399080670}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":106042455978565748,"pool_token_amount":104959922101866367}],[84,{"iota_amount":106026130172312016,"pool_token_amount":104958886154088921}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":105994186183246095,"pool_token_amount":104957620214339329}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":105960376666159956,"pool_token_amount":104955034668039030}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":105928274047503014,"pool_token_amount":104953487247633894}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":105896478538823031,"pool_token_amount":104952225140410116}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":105830431648445243,"pool_token_amount":104948628147371969}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":105746277043784963,"pool_token_amount":104945384758770885}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":105729385600945089,"pool_token_amount":104944714218293348}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":105662329319958462,"pool_token_amount":104939681624455969}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":105630763503057974,"pool_token_amount":104938640517845953}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":105564060346189754,"pool_token_amount":104933319889933989}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":105468611464212946,"pool_token_amount":104930608931863046}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":105452777469885941,"pool_token_amount":104930247201362920}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":105327781921035290,"pool_token_amount":104929342106086780}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":105116022491668488,"pool_token_amount":104917061673361592}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":25405902238434252,"pool_token_amount":25400037437186026}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Ahoy Validator":[[167,{"iota_amount":137536556634519065,"pool_token_amount":134660856618901182}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":137502729281141466,"pool_token_amount":134661693349568612}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":137467077483403773,"pool_token_amount":134660744242601154}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":137432509022301453,"pool_token_amount":134660739742482524}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":137361751793581491,"pool_token_amount":134660682803590203}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":137326119985718382,"pool_token_amount":134660683174765992}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":137236781078120340,"pool_token_amount":134660441933397429}],[149,{"iota_amount":137218955399086884,"pool_token_amount":134660436071910779}],[148,{"iota_amount":137202333399116466,"pool_token_amount":134661517940145946}],[147,{"iota_amount":137183208512157532,"pool_token_amount":134660059933081454}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":137112338487996913,"pool_token_amount":134659775814189883}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":137041806001363114,"pool_token_amount":134659703377109446}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":136989109021061677,"pool_token_amount":134659700344161840}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":136936772699347172,"pool_token_amount":134660203276785633}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":137339542445201749,"pool_token_amount":135160564582719192}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":137269828867400668,"pool_token_amount":135161410832508839}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":137216915522700760,"pool_token_amount":135161421725769360}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":137181613851657855,"pool_token_amount":135161394370760660}],[117,{"iota_amount":137163981416581946,"pool_token_amount":135161395438475736}],[116,{"iota_amount":137146409437449345,"pool_token_amount":135161455363992860}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":137128681207677113,"pool_token_amount":135161456455717408}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":137093212473277407,"pool_token_amount":135161446932863334}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":137057827122667632,"pool_token_amount":135161428019237217}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":136940145602921211,"pool_token_amount":135161337570391070}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":136919784388067637,"pool_token_amount":135161386416538189}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":136858808042889288,"pool_token_amount":135161663539327888}],[97,{"iota_amount":136767365299724206,"pool_token_amount":135150907430503097}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":136747577891802889,"pool_token_amount":135151179946329724}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":136569360774064533,"pool_token_amount":135150949506361963}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":136530160188369629,"pool_token_amount":135150985487653693}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":136471190344212381,"pool_token_amount":135150627503657867}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":136095498533212531,"pool_token_amount":135175309888560686}],[61,{"iota_amount":136076245216832988,"pool_token_amount":135175493000305786}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":136056687938046260,"pool_token_amount":135175482910819079}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":136037299596173487,"pool_token_amount":135175634795734766}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":135850655977030339,"pool_token_amount":135146048253782527}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":135734934931634380,"pool_token_amount":135148626536702810}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":135695392675213274,"pool_token_amount":135148591036333149}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":135675429301120486,"pool_token_amount":135148489202469978}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":135574776878503731,"pool_token_amount":135148133631043139}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":135554263461423538,"pool_token_amount":135148209689437509}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":100526499684542534,"pool_token_amount":100257379408674274}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":100493790983202954,"pool_token_amount":100257245858401769}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":100441120563435796,"pool_token_amount":100253725710004158}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":100423388647635235,"pool_token_amount":100252845829209127}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Allnodes":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":41945226777940910,"pool_token_amount":41058717489928776}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":41933387589231820,"pool_token_amount":41057569157037985}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":41947929794460088,"pool_token_amount":41103354368762468}],[156,{"iota_amount":41942655910180052,"pool_token_amount":41103505187266885}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":41931349675742423,"pool_token_amount":41103064220258078}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":41841638502044587,"pool_token_amount":41046928310421344}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":41843932876285206,"pool_token_amount":41060013976513164}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":41820083443540515,"pool_token_amount":41063268316838961}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":41803813342841935,"pool_token_amount":41057960828336695}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":41775654335610327,"pool_token_amount":41051663915234929}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":41759599461538987,"pool_token_amount":41046567901553573}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":41752200377003645,"pool_token_amount":41044638238708895}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":41742650650682184,"pool_token_amount":41040594749351098}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":41730211471976507,"pool_token_amount":41039058842248097}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":41711760929287013,"pool_token_amount":41026263701797818}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":41703161107376949,"pool_token_amount":41023151631856085}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":41688021114557743,"pool_token_amount":41019024609001103}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":41681957461154797,"pool_token_amount":41018310615762379}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":41660448525927971,"pool_token_amount":41018248453409150}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":41655075270979316,"pool_token_amount":41018305805930474}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":41650175466005178,"pool_token_amount":41019099119304947}],[117,{"iota_amount":41643536165007314,"pool_token_amount":41017908299252250}],[116,{"iota_amount":41631429336570009,"pool_token_amount":41011331978740780}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":41609283289939211,"pool_token_amount":41005563539552877}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":41553427689994447,"pool_token_amount":40961490972781829}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":41570436019285049,"pool_token_amount":41001388585514539}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":48065107380532829,"pool_token_amount":47500461133153483}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":47925269003691818,"pool_token_amount":47487418020412692}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":47899205590229658,"pool_token_amount":47482854304459720}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":47860299510468105,"pool_token_amount":47489321867141342}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":47851383639288819,"pool_token_amount":47487931328251677}],[65,{"iota_amount":48491364885554483,"pool_token_amount":48130720199721504}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":48389961305918353,"pool_token_amount":48087113334345430}],[56,{"iota_amount":48382835338071581,"pool_token_amount":48087176153055754}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":46363439714269269,"pool_token_amount":46087049435813747}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":45637528012794795,"pool_token_amount":45405762861244766}],[47,{"iota_amount":45614917394395907,"pool_token_amount":45396920176703552}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":45508456906330550,"pool_token_amount":45345917078726522}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":45500322617991066,"pool_token_amount":45344760959613013}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":35580301554891828,"pool_token_amount":35481265429849100}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":35485129761915502,"pool_token_amount":35416306743889336}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35474352629132506,"pool_token_amount":35411657684784245}],[25,{"iota_amount":25435749166272888,"pool_token_amount":25405778066530643}],[24,{"iota_amount":25205554474744994,"pool_token_amount":25181297927578319}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":25135090838487568,"pool_token_amount":25123107106458969}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25650000019248364,"pool_token_amount":25649999999894508}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Anchorage Digital-1":[[167,{"iota_amount":30616090018098256,"pool_token_amount":30065177769519725}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[159,{"iota_amount":30579497301791575,"pool_token_amount":30058940988783163}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":30575387543367356,"pool_token_amount":30058698600526780}],[157,{"iota_amount":30571277687624579,"pool_token_amount":30058456175899796}],[156,{"iota_amount":30567168191159251,"pool_token_amount":30058213741830163}],[155,{"iota_amount":30563058484490832,"pool_token_amount":30057971264690708}],[152,{"iota_amount":30550524568810380,"pool_token_amount":30057043702629882}],[151,{"iota_amount":30546414409305347,"pool_token_amount":30056801076089132}],[150,{"iota_amount":30542304421178100,"pool_token_amount":30056558428987848}],[149,{"iota_amount":30538193986235439,"pool_token_amount":30056315724793393}],[148,{"iota_amount":30534043599829442,"pool_token_amount":30056033623938680}],[145,{"iota_amount":30522427466064763,"pool_token_amount":30056018829848775}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":30510138198094224,"pool_token_amount":30055339234123614}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":30498051539468497,"pool_token_amount":30054672527726691}],[138,{"iota_amount":30494081119572262,"pool_token_amount":30054479972351211}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":30467816621944545,"pool_token_amount":30054916236948756}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":30459791890809073,"pool_token_amount":30054450552641164}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":30429898714491600,"pool_token_amount":30073540174854425}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":30432233185012054,"pool_token_amount":30091135159620143}],[111,{"iota_amount":30418236693775841,"pool_token_amount":30081117418103842}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":30414199254081588,"pool_token_amount":30080948525172185}],[109,{"iota_amount":30404846013543378,"pool_token_amount":30075948421509901}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":30365906038700441,"pool_token_amount":30054724899180680}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":30360151498615884,"pool_token_amount":30053456938944156}],[101,{"iota_amount":30315905353895954,"pool_token_amount":30022896535349530}],[100,{"iota_amount":30312201857552185,"pool_token_amount":30023607529927007}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":30286068107266744,"pool_token_amount":30023466990907308}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[88,{"iota_amount":121426725771408009,"pool_token_amount":120512524303800711}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":121390640030155877,"pool_token_amount":120511029711187150}],[85,{"iota_amount":151371443802214618,"pool_token_amount":150301217857128704}],[84,{"iota_amount":151348137636636847,"pool_token_amount":150299372217082560}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":151325321704224328,"pool_token_amount":150298012747241011}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":418194398973115559,"pool_token_amount":415872299316475160}],[73,{"iota_amount":205920313530691210,"pool_token_amount":204864557337488098}],[72,{"iota_amount":30162036770237338,"pool_token_amount":30011760879402318}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[67,{"iota_amount":30136511170752886,"pool_token_amount":30008506235489081}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":30131732371316310,"pool_token_amount":30008220445532962}],[64,{"iota_amount":30122508354655963,"pool_token_amount":30007669233509732}],[61,{"iota_amount":30109178317181310,"pool_token_amount":30006878499594518}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":30100285732944022,"pool_token_amount":30006345783501753}],[58,{"iota_amount":30095840204331590,"pool_token_amount":30006079884222607}],[57,{"iota_amount":30091388777545584,"pool_token_amount":30005807972010196}],[56,{"iota_amount":30086843217197839,"pool_token_amount":30005442682900979}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":30077845551822847,"pool_token_amount":30004908936336770}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":30064174085885139,"pool_token_amount":30004090520926897}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":30045922560270961,"pool_token_amount":30002973925880759}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":30032264350030784,"pool_token_amount":30002165822405313}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[42,{"iota_amount":30023129868417929,"pool_token_amount":30001598541320198}],[41,{"iota_amount":30018358648801955,"pool_token_amount":30001111457703588}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":0,"pool_token_amount":0}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}]],"Anchorage Digital-2":[[167,{"iota_amount":185541314736551107,"pool_token_amount":182261342386316939}],[163,{"iota_amount":78356771142147363,"pool_token_amount":77010096883805943}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":78346277492229607,"pool_token_amount":77009413416231209}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":78342541720780234,"pool_token_amount":77024813858921809}],[158,{"iota_amount":41967546616598638,"pool_token_amount":41272210603053443}],[155,{"iota_amount":41950406218185594,"pool_token_amount":41271199087837047}],[146,{"iota_amount":41898630259021708,"pool_token_amount":41267640635804831}],[145,{"iota_amount":41892907413273460,"pool_token_amount":41267301509697613}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":41881468580414524,"pool_token_amount":41266625384485949}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":41859605112602178,"pool_token_amount":41266265164526663}],[138,{"iota_amount":41853882344943895,"pool_token_amount":41265926664896805}],[137,{"iota_amount":41848155631564404,"pool_token_amount":41265587888249633}],[136,{"iota_amount":41842431472457252,"pool_token_amount":41265249219228351}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":41830991090267079,"pool_token_amount":41264572220407878}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":41813758319199497,"pool_token_amount":41263489993672364}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":41795845707716580,"pool_token_amount":41272361573909075}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":41761507387857848,"pool_token_amount":41270302285702617}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[115,{"iota_amount":41733266872581162,"pool_token_amount":41268944567901452}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":41721482554731648,"pool_token_amount":41267918132421561}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":41703537255487844,"pool_token_amount":41266115206096109}],[109,{"iota_amount":41697171384383365,"pool_token_amount":41265727958171889}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":41658281933521508,"pool_token_amount":41263419243124864}],[102,{"iota_amount":41651691245713593,"pool_token_amount":41263029418995973}],[98,{"iota_amount":41625535101707443,"pool_token_amount":41261475274867463}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":41612660771152366,"pool_token_amount":41260671310041890}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":41593545280008979,"pool_token_amount":41259532983353503}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":41586771040094167,"pool_token_amount":41258710188952494}],[91,{"iota_amount":41577945563629037,"pool_token_amount":41255838453720002}],[89,{"iota_amount":41565318531392365,"pool_token_amount":41255045603527479}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":41546420082302621,"pool_token_amount":41253870454006017}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":41531289801904249,"pool_token_amount":41256627563745822}],[81,{"iota_amount":41518825592682724,"pool_token_amount":41255885549089481}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":41499908893301804,"pool_token_amount":41254754771173522}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":41493977799525556,"pool_token_amount":41260494923035693}],[73,{"iota_amount":41475079127096501,"pool_token_amount":41259363483432692}],[72,{"iota_amount":41468410783593773,"pool_token_amount":41258965463775930}],[70,{"iota_amount":41455070320262079,"pool_token_amount":41258168083080432}],[69,{"iota_amount":41448399102459307,"pool_token_amount":41257769711202696}],[67,{"iota_amount":41435065426488955,"pool_token_amount":41256975183168449}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":41420430450792027,"pool_token_amount":41260815718800467}],[63,{"iota_amount":41413884443569930,"pool_token_amount":41260226896182575}],[61,{"iota_amount":40410405673849937,"pool_token_amount":40271920257251776}],[60,{"iota_amount":40404071773175228,"pool_token_amount":40271335434266736}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":40397959745528798,"pool_token_amount":40270969917366796}],[58,{"iota_amount":40391847143688757,"pool_token_amount":40270604314138582}],[57,{"iota_amount":40385733681859852,"pool_token_amount":40270237670279970}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":40342939305879506,"pool_token_amount":40267673163363283}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":40324600351510926,"pool_token_amount":40266573784649205}],[46,{"iota_amount":40318487041911971,"pool_token_amount":40266206763947877}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[40,{"iota_amount":30014044653921477,"pool_token_amount":30000894139882708}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}]],"Ankr":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27834875247327235,"pool_token_amount":27253033497682335}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":27836880080343632,"pool_token_amount":27283088913768974}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27832958184081050,"pool_token_amount":27282807317414573}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":27816143848252139,"pool_token_amount":27280577646300312}],[150,{"iota_amount":27811756686295983,"pool_token_amount":27279839827878546}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":27799258180662917,"pool_token_amount":27281849703855080}],[145,{"iota_amount":27795434999842648,"pool_token_amount":27281669830893990}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27791720839257627,"pool_token_amount":27281596920054668}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27740483348993766,"pool_token_amount":27263440975355820}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27736770135156685,"pool_token_amount":27263367987636859}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27729406225174524,"pool_token_amount":27263285122071558}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27719418011874332,"pool_token_amount":27264205410898092}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27700724346843030,"pool_token_amount":27252981680306358}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27673603141580631,"pool_token_amount":27251352891366267}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":27673880253609058,"pool_token_amount":27262373805472577}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":27658899253699824,"pool_token_amount":27276688633407965}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[102,{"iota_amount":27628348366327421,"pool_token_amount":27275234895506011}],[101,{"iota_amount":27561481532339594,"pool_token_amount":27213342024764992}],[98,{"iota_amount":27548166774698423,"pool_token_amount":27212504720258817}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27540654495424777,"pool_token_amount":27213220066274005}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27535971916342781,"pool_token_amount":27212648238627647}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27527806401533686,"pool_token_amount":27212681985299208}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":27523740821498482,"pool_token_amount":27212601606771544}],[91,{"iota_amount":27494274850780766,"pool_token_amount":27187402284281455}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27478000667596089,"pool_token_amount":27187085242867303}],[86,{"iota_amount":27473864718774010,"pool_token_amount":27187016297141523}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27442067093077398,"pool_token_amount":27183522882229672}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27431395630117394,"pool_token_amount":27176945478949593}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":27410772345158717,"pool_token_amount":27180477410158867}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":29459085552519888,"pool_token_amount":29234601351455807}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":29453846212297206,"pool_token_amount":29233941276367279}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":29415472997908016,"pool_token_amount":29208822588061827}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":29370446211134410,"pool_token_amount":29193636362692127}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":29364840222584189,"pool_token_amount":29192286547298983}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":29362188212849614,"pool_token_amount":29193981633786170}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":29352692988567436,"pool_token_amount":29193205827572392}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":29322845693552819,"pool_token_amount":29189518601526347}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":34229972150543251,"pool_token_amount":34105627318578118}],[39,{"iota_amount":34224816344374222,"pool_token_amount":34105591065961725}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27214493453369373,"pool_token_amount":27132023725291198}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":27205536146597418,"pool_token_amount":27131890245260586}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27064716682726903,"pool_token_amount":27023244716152260}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20018666175233170,"pool_token_amount":20004810987516623}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20006918736012401,"pool_token_amount":20002343818644342}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000140558}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000550400,"pool_token_amount":20000000000011000}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Artifact":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":137862115188376758,"pool_token_amount":134942434593093588}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":137825567605310661,"pool_token_amount":134941304341510022}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":137807257574032215,"pool_token_amount":134940702905398273}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":137639647395556718,"pool_token_amount":134935366040537214}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":137600958251495320,"pool_token_amount":134933091658482167}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":137507413493465297,"pool_token_amount":134930338997658502}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":137435221409740001,"pool_token_amount":134947934321438351}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":137416665013198772,"pool_token_amount":134947387703979095}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":137379504009657730,"pool_token_amount":134946252825926207}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":137360915116130296,"pool_token_amount":134945690743525593}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":137317750006935155,"pool_token_amount":134938700045816046}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":137299185011390033,"pool_token_amount":134938152744656623}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":137280618944431880,"pool_token_amount":134937605340123618}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":137224865457446643,"pool_token_amount":134935922922175097}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":137206292098193338,"pool_token_amount":134935376455327402}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":137168979606658695,"pool_token_amount":134934140336912606}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":137130750215103629,"pool_token_amount":134931967353104085}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":137056503154335462,"pool_token_amount":134929777159531447}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":137037941301505053,"pool_token_amount":134929227989361407}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":137000882130444594,"pool_token_amount":134928182022431127}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":136926671254663359,"pool_token_amount":134925988009971660}],[114,{"iota_amount":136908119524231652,"pool_token_amount":134925439589627837}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":136871015616318731,"pool_token_amount":134924345398394902}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":136852381954567139,"pool_token_amount":134923717842422098}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":136808082769970247,"pool_token_amount":134937249749042401}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":136787345563496965,"pool_token_amount":134936636139786637}],[106,{"iota_amount":136765950246937607,"pool_token_amount":134936002961078292}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":136635415376911864,"pool_token_amount":134930142278328766}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":136529688936556445,"pool_token_amount":134926858136946214}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":136385486334008396,"pool_token_amount":134923778058596886}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":136308893885281589,"pool_token_amount":134926972944636903}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":136242330344720848,"pool_token_amount":134920179436748065}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":136147683103649781,"pool_token_amount":134925494178471182}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":136127223847199174,"pool_token_amount":134924877258981885}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":136042033585041869,"pool_token_amount":134921863802792998}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":135997456585594866,"pool_token_amount":134919368391532383}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":135953977689210075,"pool_token_amount":134918155416623725}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":135869517333281209,"pool_token_amount":134915641306189642}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":135761901076415678,"pool_token_amount":134887556663842826}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":135662242669134461,"pool_token_amount":134887621125404356}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":135600106410351783,"pool_token_amount":134885656977453758}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":135398654784451497,"pool_token_amount":134885153738724074}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":105256756576208717,"pool_token_amount":104971505534810890}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105219464625355488,"pool_token_amount":104968974435030257}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":105149452893004498,"pool_token_amount":104969330822448905}],[27,{"iota_amount":105129879133599505,"pool_token_amount":104968744615556752}],[24,{"iota_amount":80078457195260956,"pool_token_amount":80004203292103525}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80038219627099941,"pool_token_amount":80001036313506367}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Astro-Stakers":[[167,{"iota_amount":35713278970292193,"pool_token_amount":34996053193317523}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35689423749681498,"pool_token_amount":34993682161632499}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":35680206906493335,"pool_token_amount":34992868768258510}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35675399916531949,"pool_token_amount":34992449010807307}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35671975080833742,"pool_token_amount":34997679690444800}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35652320698112945,"pool_token_amount":34995579486427809}],[151,{"iota_amount":35642620557283760,"pool_token_amount":34994654491113370}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[148,{"iota_amount":35628185488145877,"pool_token_amount":34993426947075393}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":35592582142192685,"pool_token_amount":34992997557837346}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":35564198482086036,"pool_token_amount":34999326594715117}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":35516947924316720,"pool_token_amount":34995630254946649}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35507516617401540,"pool_token_amount":34994884987860295}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35498088513362556,"pool_token_amount":34994141586952539}],[117,{"iota_amount":35493375375786496,"pool_token_amount":34993769888385284}],[116,{"iota_amount":35488667477271984,"pool_token_amount":34993403132402910}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":35474532566035655,"pool_token_amount":34992292526523222}],[111,{"iota_amount":35471010290962981,"pool_token_amount":34997374727669152}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":90853781868271072,"pool_token_amount":39531943192078969}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35456003188550117,"pool_token_amount":34996361707123798}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[101,{"iota_amount":35416877721351908,"pool_token_amount":34992325583302708}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35396304673824127,"pool_token_amount":34996497599125638}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35380165758821357,"pool_token_amount":34995252942485528}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":35371510736889665,"pool_token_amount":34996341194194067}],[90,{"iota_amount":35364254744973390,"pool_token_amount":34993970056038254}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35336084464674732,"pool_token_amount":34990073463073998}],[84,{"iota_amount":35339475110401111,"pool_token_amount":34998197529435746}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35334243140478538,"pool_token_amount":34997782102725819}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35323994930424614,"pool_token_amount":34997164786909958}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35321906905556185,"pool_token_amount":35004836701284836}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35317442416658004,"pool_token_amount":35005176775559149}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":35312212546762876,"pool_token_amount":35004759357845348}],[76,{"iota_amount":35306991300627034,"pool_token_amount":35004346654768113}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":35296610609115636,"pool_token_amount":35003584483176460}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35268849953543809,"pool_token_amount":35001306407084036}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":35264100987930229,"pool_token_amount":35001666844050248}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35165553764197714,"pool_token_amount":35001689027603212}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":35132626204420787,"pool_token_amount":35003112187036668}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":35096772974984347,"pool_token_amount":34997884467147200}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35082624023242250,"pool_token_amount":35000001506307002}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":35076652400821513,"pool_token_amount":34999451534318999}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":35063056765722483,"pool_token_amount":34997012098735410}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":35049403563688967,"pool_token_amount":34995143489510391}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25018970896908741,"pool_token_amount":25001568139606424}],[22,{"iota_amount":25012063523938587,"pool_token_amount":25000445971954923}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000031979264,"pool_token_amount":25000000000639572}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}]],"B-Harvest":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35765158602133587,"pool_token_amount":35051088968862214}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35751024871142051,"pool_token_amount":35049980709922754}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35746314182985307,"pool_token_amount":35049611244294572}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35732286267435756,"pool_token_amount":35048511653839870}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35722663304652903,"pool_token_amount":35047756500911537}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":35693660996126419,"pool_token_amount":35045360289820211}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35674353916445634,"pool_token_amount":35043792889878392}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35659901873578123,"pool_token_amount":35042657034674146}],[143,{"iota_amount":35655087542314004,"pool_token_amount":35042278554275118}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":35644989796184889,"pool_token_amount":35049680686203601}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35624056671757400,"pool_token_amount":35050532254051576}],[133,{"iota_amount":35619339173630539,"pool_token_amount":35050160929580610}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":35595440804209119,"pool_token_amount":35048280975112915}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":35581127117242251,"pool_token_amount":35047186415298330}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":35543228089945697,"pool_token_amount":35044216934980948}],[116,{"iota_amount":35538114873176832,"pool_token_amount":35043541495178942}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":35528600516191395,"pool_token_amount":35042893073776583}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":35518950774474835,"pool_token_amount":35042111635408411}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35489146925095486,"pool_token_amount":35031162072947334}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35483793473825320,"pool_token_amount":35030737588926148}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":35478311672866445,"pool_token_amount":35030313768143641}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":35461633220746223,"pool_token_amount":35029057169890208}],[102,{"iota_amount":35456198138968843,"pool_token_amount":35028628576063338}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":35417959704071513,"pool_token_amount":35025508708949830}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":35385820100716313,"pool_token_amount":35022752122945458}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35336371307999881,"pool_token_amount":35017410212679203}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":35335652893883714,"pool_token_amount":35036067175547151}],[74,{"iota_amount":35324968823084977,"pool_token_amount":35035206890575737}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35308407824094411,"pool_token_amount":35033891784706207}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35249061890994194,"pool_token_amount":35010299605283561}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35243712148069340,"pool_token_amount":35009860818271533}],[61,{"iota_amount":35233042996312325,"pool_token_amount":35009012890488731}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35222111095230316,"pool_token_amount":35007904296682887}],[57,{"iota_amount":35211416948754273,"pool_token_amount":35007031045258756}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35200727794233377,"pool_token_amount":35006163438280608}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35190086405486136,"pool_token_amount":35005343344790001}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35163403385624182,"pool_token_amount":35003211139287678}],[46,{"iota_amount":35152731513682432,"pool_token_amount":35002358471770052}],[45,{"iota_amount":35147397366238596,"pool_token_amount":35001933565404943}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35136712708223016,"pool_token_amount":35001067702743317}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35131161700856040,"pool_token_amount":35000427347017464}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":35103821663111259,"pool_token_amount":34998055010017790}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35062754399343267,"pool_token_amount":34994544079561871}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":35035681401063743,"pool_token_amount":34990912115140125}],[25,{"iota_amount":25031038260567467,"pool_token_amount":25003751495335602}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":25013579004167687,"pool_token_amount":25002019783848360}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000011122}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}]],"BLRD":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27583003289648636,"pool_token_amount":27046345869492508}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27571776452856234,"pool_token_amount":27044890931831286}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":27539204823290162,"pool_token_amount":27042139209187112}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27535402249425880,"pool_token_amount":27041683369225441}],[151,{"iota_amount":27527953178565894,"pool_token_amount":27040924753865908}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27513121856075906,"pool_token_amount":27039474715699595}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27502180492043232,"pool_token_amount":27038397515933725}],[143,{"iota_amount":27498569743462205,"pool_token_amount":27038042529590402}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27476909914549197,"pool_token_amount":27035927629297368}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27466069150963047,"pool_token_amount":27034860823619890}],[133,{"iota_amount":27462457774350892,"pool_token_amount":27034507150509510}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27458849021174011,"pool_token_amount":27034156396238808}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27448004434973300,"pool_token_amount":27033089481630029}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27440774126418952,"pool_token_amount":27032377337121289}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27433650208091656,"pool_token_amount":27031764381956176}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27422839633208281,"pool_token_amount":27030722221313044}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27401175660428719,"pool_token_amount":27028586166083839}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":27394055922118103,"pool_token_amount":27027973056580850}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27390445577332496,"pool_token_amount":27027616846433565}],[112,{"iota_amount":27386835115614161,"pool_token_amount":27027260582491069}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27350689273576645,"pool_token_amount":27023715499978234}],[100,{"iota_amount":27337809362990484,"pool_token_amount":27022355594034138}],[99,{"iota_amount":27333684099060599,"pool_token_amount":27021947825660448}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27308667691480606,"pool_token_amount":27019430261698433}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27300449023153587,"pool_token_amount":27018530675809497}],[90,{"iota_amount":27295366239961235,"pool_token_amount":27017103983430315}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":27287283277054265,"pool_token_amount":27016303873068721}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27238716888187057,"pool_token_amount":27011309697355408}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27226602067867611,"pool_token_amount":27010108169249211}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27218153385511551,"pool_token_amount":27009268174831969}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27213923456861450,"pool_token_amount":27008843962738348}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":27209587165283514,"pool_token_amount":27008413601320411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27188235632961521,"pool_token_amount":27006280772034083}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27184840919599247,"pool_token_amount":27006485709693223}],[61,{"iota_amount":27176839055778768,"pool_token_amount":27005690720535486}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":27160828791718552,"pool_token_amount":27004094115962377}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27139999171817926,"pool_token_amount":27001584901815219}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27102806673307910,"pool_token_amount":26997717279493295}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":27086314290010801,"pool_token_amount":26996035941887027}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27077969626228151,"pool_token_amount":26995203302102022}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27073726593772775,"pool_token_amount":26994780296248228}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":27042390894325100,"pool_token_amount":26992174712191332}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27037707419149628,"pool_token_amount":26991706670632558}],[25,{"iota_amount":20023263034545418,"pool_token_amount":20000578545609992}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20009421066195300,"pool_token_amount":20000261536395933}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000445300,"pool_token_amount":20000000000008902}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}]],"BartestneT":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":117507085722508773,"pool_token_amount":115091407327147149}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":117475013827648459,"pool_token_amount":115088906132189620}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":117411875248929974,"pool_token_amount":115085809474497376}],[157,{"iota_amount":117395836788729088,"pool_token_amount":115085023438118622}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":117303741557402156,"pool_token_amount":115054483933747444}],[152,{"iota_amount":117287701202352552,"pool_token_amount":115053697293946917}],[149,{"iota_amount":117239582969471468,"pool_token_amount":115051337934664603}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":117175180392260465,"pool_token_amount":115047336398830934}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":117064214969497686,"pool_token_amount":115041886776230445}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":117000764050850904,"pool_token_amount":115038770327267194}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":116921549891928770,"pool_token_amount":115034879725424279}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":116824247801047043,"pool_token_amount":115027605967221918}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":116776893558444729,"pool_token_amount":115025584614418039}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":116758177050419063,"pool_token_amount":115022134246869657}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":116742022067112446,"pool_token_amount":115021206371674357}],[117,{"iota_amount":116726177903400886,"pool_token_amount":115020581946689906}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":116645056291773765,"pool_token_amount":115015587498683988}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":116613358624109126,"pool_token_amount":115014337221559288}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":116560412420590850,"pool_token_amount":115012261424624900}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":116542220680300949,"pool_token_amount":115011543416467491}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[98,{"iota_amount":116396392046862043,"pool_token_amount":115004412054516890}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":116306470954550318,"pool_token_amount":114999891472960489}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":116288741499872194,"pool_token_amount":114999015899317966}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":116147935557915967,"pool_token_amount":114992041621923716}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":116130350595358052,"pool_token_amount":114991171123931149}],[82,{"iota_amount":116112876179452772,"pool_token_amount":114990305973828623}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":115936047996076687,"pool_token_amount":114981520336283687}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":115862034125527143,"pool_token_amount":114977867308741314}],[67,{"iota_amount":115843475418718681,"pool_token_amount":114976946454660674}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":115806360915702993,"pool_token_amount":114975107302040885}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":115754082478085879,"pool_token_amount":114972574530759978}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":115596435605821169,"pool_token_amount":114964506707440225}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":115526304170483845,"pool_token_amount":114961191740252668}],[48,{"iota_amount":115508641603284596,"pool_token_amount":114960339981216908}],[46,{"iota_amount":115473299964996026,"pool_token_amount":114958615389218842}],[45,{"iota_amount":115455618601595035,"pool_token_amount":114957741502911352}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":115366668151935908,"pool_token_amount":114953899061725000}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":105239137148993302,"pool_token_amount":104975934211119013}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":105185795307633888,"pool_token_amount":104973992787873847}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":105129202218291575,"pool_token_amount":104971108666619143}],[25,{"iota_amount":80096058906784554,"pool_token_amount":80006712332966508}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80059248507012938,"pool_token_amount":80004520970081798}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":80000000049908508,"pool_token_amount":80000000000998159}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}]],"BiXinKelePool":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[162,{"iota_amount":42340374111669720,"pool_token_amount":41521842502667070}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":42305707837400262,"pool_token_amount":41518612295669502}],[155,{"iota_amount":42304003382673775,"pool_token_amount":41522132128613802}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":42280426851748501,"pool_token_amount":41519764387052654}],[150,{"iota_amount":42274612722396020,"pool_token_amount":41519250529116154}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":42234957940338748,"pool_token_amount":41521186438267286}],[140,{"iota_amount":42223522699839723,"pool_token_amount":41520174596343228}],[136,{"iota_amount":42203289942160419,"pool_token_amount":41520764568436564}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":42197569916120985,"pool_token_amount":41520258091146304}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":42191045559970246,"pool_token_amount":41518960427124654}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":42177486074264492,"pool_token_amount":41520990088095296}],[130,{"iota_amount":42171763006099532,"pool_token_amount":41520483028633484}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":42166047666719313,"pool_token_amount":41519986566243959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":42154607810705995,"pool_token_amount":41518979979300318}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[122,{"iota_amount":42131124827568450,"pool_token_amount":41521482619108673}],[120,{"iota_amount":42119689255529894,"pool_token_amount":41520468246856456}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":42096823538790465,"pool_token_amount":41518439232144521}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":42085238325951417,"pool_token_amount":41522405011420462}],[109,{"iota_amount":42061676694083832,"pool_token_amount":41520263961219080}],[107,{"iota_amount":42048933867825307,"pool_token_amount":41519102142636544}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[98,{"iota_amount":41994260756087382,"pool_token_amount":41518271188003300}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":41982574827184676,"pool_token_amount":41523981199863461}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[89,{"iota_amount":41944015098773049,"pool_token_amount":41520163358102447}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":41931222961006951,"pool_token_amount":41518895201483001}],[84,{"iota_amount":41924375100018228,"pool_token_amount":41529134652761944}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[78,{"iota_amount":41889611556739718,"pool_token_amount":41528725811902398}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[72,{"iota_amount":41859620862269647,"pool_token_amount":41533407886346002}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":41861352402193453,"pool_token_amount":41553100417333572}],[67,{"iota_amount":41847795170597414,"pool_token_amount":41551755213603120}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[58,{"iota_amount":41799397625107841,"pool_token_amount":41555445764505896}],[55,{"iota_amount":41780392083448999,"pool_token_amount":41553556044641193}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":41774056975706019,"pool_token_amount":41552925973347520}],[53,{"iota_amount":41767721958070670,"pool_token_amount":41552296722117405}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":41749487978781002,"pool_token_amount":41551173180254168}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":41743153143039671,"pool_token_amount":41550542705794559}],[48,{"iota_amount":41739873632174967,"pool_token_amount":41553053934397006}],[46,{"iota_amount":41727204346745637,"pool_token_amount":41551792590227341}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":41711225748197813,"pool_token_amount":41552913348429428}],[41,{"iota_amount":41698331530818861,"pool_token_amount":41551627834534411}],[39,{"iota_amount":35102460727004260,"pool_token_amount":34988799332079983}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":35100462800728419,"pool_token_amount":34991696064706283}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35089423977843002,"pool_token_amount":34990593730539865}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":35077765096156622,"pool_token_amount":34989441820683982}],[31,{"iota_amount":35063105920818553,"pool_token_amount":34990697774499023}],[28,{"iota_amount":35044302510401945,"pool_token_amount":34988126658221397}],[26,{"iota_amount":35033708955650315,"pool_token_amount":34989740538840425}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":25000000019836964,"pool_token_amount":25000000000396727}],[17,{"iota_amount":25000000015495364,"pool_token_amount":25000000000309897}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"BlockEden.xyz":[[167,{"iota_amount":36726098257932527,"pool_token_amount":35997418274243052}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":36721286185188055,"pool_token_amount":35996946614186807}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":36697234918922741,"pool_token_amount":35994588371741247}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":36713402325485080,"pool_token_amount":36023376782171812}],[156,{"iota_amount":36702360957029306,"pool_token_amount":36021305914171443}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":36676922608875615,"pool_token_amount":36018210190155582}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":36657255465077044,"pool_token_amount":36016265183919536}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":36632172107223620,"pool_token_amount":36013800098993296}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":36612104728883417,"pool_token_amount":36011826869126917}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":36607081295999820,"pool_token_amount":36011332761382451}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":36597054705955635,"pool_token_amount":36010357134450204}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":36592036849614676,"pool_token_amount":36009863392588193}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":36587018234622476,"pool_token_amount":36009369515120462}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":36581233027348593,"pool_token_amount":36008121612258155}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":36561152810147210,"pool_token_amount":36006150041836188}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":36551141797998123,"pool_token_amount":36005186536428898}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":36546130464944381,"pool_token_amount":36004697322492802}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":36541109542557706,"pool_token_amount":36004199121686470}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":36536092983028107,"pool_token_amount":36003704836294058}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":36516050366878178,"pool_token_amount":36001748159881534}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":36459939708194725,"pool_token_amount":35996363436761505}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":36443052484019378,"pool_token_amount":35994698630983787}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":36431428578332547,"pool_token_amount":35993549117064649}],[98,{"iota_amount":36402697647983429,"pool_token_amount":35990707075389107}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":36391459319647805,"pool_token_amount":35989600370496064}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":36380346038435370,"pool_token_amount":35988483433167089}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":36347640026133045,"pool_token_amount":35985695229610714}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":36342158426369897,"pool_token_amount":35985165909873277}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":36330671112396717,"pool_token_amount":35983561423219369}],[84,{"iota_amount":36325217444472978,"pool_token_amount":35983021266895089}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":36293320362502507,"pool_token_amount":35995357160305232}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":36275662178674804,"pool_token_amount":35998083238230451}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":36269879697370177,"pool_token_amount":35997508521688108}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":36252533389231561,"pool_token_amount":35995780415671904}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":36213816627490468,"pool_token_amount":35987427687414356}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":36202424436802869,"pool_token_amount":35985848262726344}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":36185515332308174,"pool_token_amount":35983954324672914}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":36179958036887836,"pool_token_amount":35983401690656406}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":36143197509138010,"pool_token_amount":35995591339694884}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":36102290654584148,"pool_token_amount":35989917813028023}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":36084842483334300,"pool_token_amount":35988011249911319}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":36059269811637942,"pool_token_amount":35984667775929741}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":25039782258486216,"pool_token_amount":25003759785108899}],[26,{"iota_amount":25034801958386532,"pool_token_amount":25003283169811624}],[24,{"iota_amount":25024242607987629,"pool_token_amount":25002433641925894}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25018192297371582,"pool_token_amount":25001793172110713}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":25000000015495364,"pool_token_amount":25000000000309897}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000011122}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}]],"BlockVision":[[167,{"iota_amount":46607803587975292,"pool_token_amount":45673670729982689}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":46587396047413958,"pool_token_amount":45681080005439287}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":46575958210517682,"pool_token_amount":45680827649645088}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":46556716590362088,"pool_token_amount":45678944730435931}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":46543795515237337,"pool_token_amount":45677596449974285}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":46516950926451233,"pool_token_amount":45673918429053368}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":46497902341046995,"pool_token_amount":45672046977649258}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":46491582640218351,"pool_token_amount":45671426231548280}],[145,{"iota_amount":46646654185460203,"pool_token_amount":45834972334352696}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":46640329074678463,"pool_token_amount":45834349944425657}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":46627693386122617,"pool_token_amount":45833109030994389}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":46621374180460882,"pool_token_amount":45832487878537731}],[140,{"iota_amount":46614715436211159,"pool_token_amount":45831533333613963}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":46481622812681162,"pool_token_amount":45817980000005562}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":46471804078584205,"pool_token_amount":45813907119182523}],[116,{"iota_amount":46472809981708079,"pool_token_amount":45826113253484207}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":46459548968193817,"pool_token_amount":45824250247006539}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":46452697871413456,"pool_token_amount":45823101370510538}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":46419838821696086,"pool_token_amount":45819989676226466}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":46385419628666925,"pool_token_amount":45818383855626061}],[97,{"iota_amount":46341361368391645,"pool_token_amount":45813407275029996}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":46334129448159712,"pool_token_amount":45812517951052328}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":46305863311208504,"pool_token_amount":45809721695500571}],[91,{"iota_amount":46298763472603576,"pool_token_amount":45809017825187549}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":46284515186775850,"pool_token_amount":45807525827293200}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":46250371461504245,"pool_token_amount":45786326226986529}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":46201001280409080,"pool_token_amount":45781868371492020}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":46144959833852695,"pool_token_amount":45777920426803856}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":46130192463121860,"pool_token_amount":45776662579561301}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":46115298145833641,"pool_token_amount":45775480997819888}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":36219131146128700,"pool_token_amount":35962994828045792}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":36196943377438282,"pool_token_amount":35961166565416945}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":36180387750367603,"pool_token_amount":35959651642335581}],[58,{"iota_amount":36172938977818605,"pool_token_amount":35957227858910484}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":36142397107783807,"pool_token_amount":35952079429877998}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":36131580903692518,"pool_token_amount":35951288294753847}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":36126145451701718,"pool_token_amount":35950864800649017}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":36115241466243832,"pool_token_amount":35949985681950708}],[47,{"iota_amount":36109721026399380,"pool_token_amount":35949477395268828}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":36042050348150236,"pool_token_amount":35943723615283869}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":36027560045494744,"pool_token_amount":35940491951540558}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":35996494613928347,"pool_token_amount":35932265282671106}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":25928292013911136,"pool_token_amount":25905581543356260}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":25000000019836964,"pool_token_amount":25000000000396727}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Blockdaemon":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":117288640199503743,"pool_token_amount":115022542115133813}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":117273101265919288,"pool_token_amount":115021323017898189}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":117257564618341846,"pool_token_amount":115020103951444885}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":117210972618313961,"pool_token_amount":115016447268860550}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":71436868631769519,"pool_token_amount":70116922309784292}],[156,{"iota_amount":71438425477812847,"pool_token_amount":70136012438258919}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":71406330842745910,"pool_token_amount":70130853090019222}],[152,{"iota_amount":71393994847305286,"pool_token_amount":70127524146213132}],[151,{"iota_amount":71379386092053931,"pool_token_amount":70121961953584903}],[149,{"iota_amount":71356721085359079,"pool_token_amount":70117272979164092}],[148,{"iota_amount":71346856513304848,"pool_token_amount":70116370957793311}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":71221418224848324,"pool_token_amount":70104227164658824}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":71685072742026922,"pool_token_amount":70594346710692852}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":71675348560626864,"pool_token_amount":70593210628961066}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":69597840175880794,"pool_token_amount":68596183444039653}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":69588514937115838,"pool_token_amount":68595172377006267}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":69579082024997025,"pool_token_amount":68594056585145341}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":69225009616437019,"pool_token_amount":68361166530743031}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":69181666712656893,"pool_token_amount":68356005054540980}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":69159109292616167,"pool_token_amount":68352681647512675}],[101,{"iota_amount":69148293088747823,"pool_token_amount":68351399708348462}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":69072734091495939,"pool_token_amount":68341904524458573}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":69044119588316808,"pool_token_amount":68322834712712927}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":69012691006141175,"pool_token_amount":68319105679448956}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":67532470414976835,"pool_token_amount":66862665199964625}],[88,{"iota_amount":67522262075036777,"pool_token_amount":66861454964004613}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":67501354821424457,"pool_token_amount":66858539235338928}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":67387504858777390,"pool_token_amount":66772367104012764}],[82,{"iota_amount":67377373375645190,"pool_token_amount":66771159808143360}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":67368611543917786,"pool_token_amount":66771309002581518}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":67337767714563755,"pool_token_amount":66767617742143326}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":67180452235726896,"pool_token_amount":66638112742897960}],[74,{"iota_amount":66836887504620136,"pool_token_amount":66306150679380405}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":66805110323109360,"pool_token_amount":66302278113091469}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":66794425819739484,"pool_token_amount":66300996016645965}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":66762152386889836,"pool_token_amount":66296922032996619}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":66183279429175683,"pool_token_amount":65749398369969696}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":66173021786197030,"pool_token_amount":65747952593502821}],[61,{"iota_amount":65952419128535825,"pool_token_amount":65546231424387952}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":56030308367314341,"pool_token_amount":55722510418909828}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":55936306726847350,"pool_token_amount":55710916425978336}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":55927762658267547,"pool_token_amount":55709906674913006}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":55709994950093679,"pool_token_amount":55508087495401772}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":35568778891434308,"pool_token_amount":35518021214312457}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":28458499105190570,"pool_token_amount":28439798063978626}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Blockscope.net":[[167,{"iota_amount":153534198820848694,"pool_token_amount":150274929096901219}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":153518389867009701,"pool_token_amount":150297702297512327}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":153477691897123987,"pool_token_amount":150296109384786094}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":153416655773220935,"pool_token_amount":150293515132567143}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":153426153454153680,"pool_token_amount":150322434056859873}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":153374653949713384,"pool_token_amount":150291586978391208}],[156,{"iota_amount":153333010431509130,"pool_token_amount":150290006041737339}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":153270116568171834,"pool_token_amount":150287407482011017}],[149,{"iota_amount":153185831947258645,"pool_token_amount":150283652880840739}],[148,{"iota_amount":153165664818645081,"pool_token_amount":150283412805022073}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":152978867311361093,"pool_token_amount":150275518009600716}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":152674558008304557,"pool_token_amount":150269033564837113}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":152661552665646693,"pool_token_amount":150275766441977749}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":152599626679559908,"pool_token_amount":150273403651902143}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":152517778996650403,"pool_token_amount":150270936585865692}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":152440611895372564,"pool_token_amount":150253530114421457}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":152326021706340826,"pool_token_amount":150264555288680330}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":152301705707579374,"pool_token_amount":150263108958091891}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":152185142162393659,"pool_token_amount":150261211757025566}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":152066226996732910,"pool_token_amount":150255390759042180}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":152041274043986389,"pool_token_amount":150252958056325315}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":151867187410039168,"pool_token_amount":150256555324569125}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":151821346498510800,"pool_token_amount":150254765741644168}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":151752796156411992,"pool_token_amount":150252061290152323}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":151702169947041477,"pool_token_amount":150246154909996301}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":151656561327572090,"pool_token_amount":150244345480937263}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":151588172979086253,"pool_token_amount":150241610312275054}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":151500919855600098,"pool_token_amount":150313839951090541}],[67,{"iota_amount":151476693519767621,"pool_token_amount":150312878490635771}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":211569526460800051,"pool_token_amount":210081373524611121}],[62,{"iota_amount":211537677154121410,"pool_token_amount":210080046557786807}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":211168233926581951,"pool_token_amount":209987221128348745}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":210861246511467226,"pool_token_amount":209989206122422742}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":150750193360006689,"pool_token_amount":150215953913045113}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":150701000334755610,"pool_token_amount":150211950366773571}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":170717347131493151,"pool_token_amount":170193186545118769}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":170577906774042100,"pool_token_amount":170193754895966477}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":170547990711068127,"pool_token_amount":170191985905942429}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":200512622418438545,"pool_token_amount":200167865729086964}],[27,{"iota_amount":200278530506479079,"pool_token_amount":199970361652571880}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":150109326426139993,"pool_token_amount":150005218149539212}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":150000000119670491,"pool_token_amount":150000000002393397}],[16,{"iota_amount":150000000053253526,"pool_token_amount":150000000001065061}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":150000000004141300,"pool_token_amount":150000000000082818}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":150000000004043500,"pool_token_amount":150000000000080863}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":150000000003424100,"pool_token_amount":150000000000068478}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":150000000000000000,"pool_token_amount":150000000000000000}]],"Brightlystake":[[167,{"iota_amount":36769230841564408,"pool_token_amount":36024115216251123}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":36764417768819936,"pool_token_amount":36023737071503661}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":36759606726530334,"pool_token_amount":36023359941883640}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":36754794669380732,"pool_token_amount":36022982687259198}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":36745172404617873,"pool_token_amount":36022228186774669}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":36710403799881928,"pool_token_amount":36019508534723032}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":36675407772585449,"pool_token_amount":36016481019170804}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":36645429186369394,"pool_token_amount":36014143198263539}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":36635398273518208,"pool_token_amount":36013354498697102}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":36625362822615350,"pool_token_amount":36012566161194036}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":36620339389731753,"pool_token_amount":36012171009825574}],[136,{"iota_amount":36615318197448704,"pool_token_amount":36011775984938839}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":36610300630679112,"pool_token_amount":36011381195588743}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":36605282774338153,"pool_token_amount":36010986333672924}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":36580181618111295,"pool_token_amount":36009010341673221}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":36565956601321017,"pool_token_amount":36008645705975036}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":36555918344644827,"pool_token_amount":36007850303815779}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":36536274173648860,"pool_token_amount":36015773660083363}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":36516195572413630,"pool_token_amount":36014169416832669}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":36511181204824278,"pool_token_amount":36013773782051044}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":36479564153868692,"pool_token_amount":36011315430693987}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":36468136936306594,"pool_token_amount":36010412914407764}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":36462333289713413,"pool_token_amount":36009954445906952}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":36444980643223536,"pool_token_amount":36008585988784421}],[100,{"iota_amount":36439244672666878,"pool_token_amount":36008132603310864}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":36395420422834749,"pool_token_amount":36010733690785295}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":36384411269771772,"pool_token_amount":36009863118726027}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":36367938257677045,"pool_token_amount":36008573843613143}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":36362361009068500,"pool_token_amount":36008134829582751}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":36338122943693593,"pool_token_amount":36004309660594371}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":36288172337124500,"pool_token_amount":36000322585914038}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":36282392950205188,"pool_token_amount":35999863902474222}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":36264918787122773,"pool_token_amount":35998457478433048}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":36246932690953432,"pool_token_amount":35996740004231445}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":36235819023465515,"pool_token_amount":35995856985470463}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":36208462896607788,"pool_token_amount":35993668126902994}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":36142783148242106,"pool_token_amount":35988445472046849}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":36074726519212041,"pool_token_amount":35982918324858086}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25020913919159091,"pool_token_amount":25004513096698381}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000644154}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}]],"Bware Labs":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":146784382780059539,"pool_token_amount":143759286021164538}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":146764938664203343,"pool_token_amount":143758524285208267}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":146706117942754360,"pool_token_amount":143756031291441145}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":146686168570314931,"pool_token_amount":143755247472704417}],[156,{"iota_amount":146647146649979252,"pool_token_amount":143754538305239924}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":146587071106841353,"pool_token_amount":143752155126356036}],[151,{"iota_amount":146545851227910896,"pool_token_amount":143749295073691403}],[150,{"iota_amount":146526517315144242,"pool_token_amount":143749115307613462}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[146,{"iota_amount":146444848995064398,"pool_token_amount":143743891779732159}],[145,{"iota_amount":146425070494820295,"pool_token_amount":143743112403576442}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":146353273485848634,"pool_token_amount":143765769355950655}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":146254697680320373,"pool_token_amount":143762190302938380}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":146206761099925675,"pool_token_amount":143790904798750682}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":146186871572949801,"pool_token_amount":143790018695295506}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":146146416762428695,"pool_token_amount":143787602641459143}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":146106705434014864,"pool_token_amount":143785880948635209}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":146047342527348873,"pool_token_amount":143783480688359384}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":145967928678127705,"pool_token_amount":143780009903919325}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":145924456041829437,"pool_token_amount":143774552790549447}],[116,{"iota_amount":145906203187342510,"pool_token_amount":143775253722463489}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":145865148496314038,"pool_token_amount":143772174670342845}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":145787145441725356,"pool_token_amount":143770076154815515}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":145740894336536112,"pool_token_amount":143766053938314785}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":145696126777616354,"pool_token_amount":143764359171946584}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":145697279566892731,"pool_token_amount":143787225507500204}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":145718666495755034,"pool_token_amount":143831399663630885}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":145671741662335297,"pool_token_amount":143828506414599409}],[98,{"iota_amount":145514818199475423,"pool_token_amount":143759472917433129}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":145469975926808931,"pool_token_amount":143757717053750866}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":145382105024153378,"pool_token_amount":143755617010282070}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":145250460175141421,"pool_token_amount":143750824036867680}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":145085100268633625,"pool_token_amount":143649511101442250}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":144802454097370050,"pool_token_amount":143689353175008581}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":144687462939137379,"pool_token_amount":143683016747743577}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":144511209022757107,"pool_token_amount":143674438204976024}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":144422721809338544,"pool_token_amount":143670481345745795}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":135516576825767879,"pool_token_amount":134909425586675485}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":135476225346396078,"pool_token_amount":134908763697212518}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":135434304858339750,"pool_token_amount":134906755229450777}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":135308191752127750,"pool_token_amount":134902535824410380}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105230953709859342,"pool_token_amount":104983615062711155}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":105211077441032321,"pool_token_amount":104980926686452397}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":105172345603542116,"pool_token_amount":104976897133465962}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":105153804011626162,"pool_token_amount":104975940299204622}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028266523,"pool_token_amount":80000000000565321}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002203900,"pool_token_amount":80000000000044070}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840600,"pool_token_amount":80000000000036807}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Chainbase":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":117577822382942294,"pool_token_amount":115226068340249335}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":117544855034706312,"pool_token_amount":115223937754596019}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":117459107566486304,"pool_token_amount":115215347475905944}],[150,{"iota_amount":117423891982332319,"pool_token_amount":115211011698008326}],[148,{"iota_amount":117391731757489749,"pool_token_amount":115209580610274669}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":117342824433894908,"pool_token_amount":115236374524967167}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":117310881343169523,"pool_token_amount":115234883915398782}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":117214052907431250,"pool_token_amount":115229505488921206}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":117198196482596536,"pool_token_amount":115228881969987401}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":117149243005998327,"pool_token_amount":115225662137422628}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":117061034374164802,"pool_token_amount":115213798874800937}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":117045138758838941,"pool_token_amount":115213131509669069}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":117013757124979704,"pool_token_amount":115212202186977274}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":116982279845293100,"pool_token_amount":115211179953859403}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":116966030389834725,"pool_token_amount":115210158964692172}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":116907456658505668,"pool_token_amount":115197414965439345}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":116875377900396173,"pool_token_amount":115195780994705596}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":116692511695754711,"pool_token_amount":115090511890835526}],[109,{"iota_amount":116674855668016892,"pool_token_amount":115089779365586764}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":116657198408643355,"pool_token_amount":115089042919273080}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":116566136119862675,"pool_token_amount":115085427198329762}],[102,{"iota_amount":116547862632465168,"pool_token_amount":115084706491435934}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":116376621550063788,"pool_token_amount":115018127070662600}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":116340625990072925,"pool_token_amount":115016349109141558}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":116303893136287961,"pool_token_amount":115013442843911597}],[91,{"iota_amount":116286204072287563,"pool_token_amount":115012568206039313}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":116180507604635458,"pool_token_amount":115007280555852187}],[84,{"iota_amount":116163042644200082,"pool_token_amount":115006424625624592}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":116110503770040669,"pool_token_amount":115003817090518355}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":116056837126488637,"pool_token_amount":115000597105914237}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":116004431765947569,"pool_token_amount":114997953427540998}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":115950475001135540,"pool_token_amount":114995229622604707}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":115932024419831869,"pool_token_amount":114994313751514638}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":115913464152626096,"pool_token_amount":114993295243469961}],[69,{"iota_amount":115895107365548365,"pool_token_amount":114992583991658673}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":115860821067273796,"pool_token_amount":114993552138983230}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":115684253912996973,"pool_token_amount":114984917099424926}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":115666797473555976,"pool_token_amount":114984043841091909}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":115614147269467571,"pool_token_amount":114981563931883341}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":115471519716460137,"pool_token_amount":114972857605971538}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":115419816768374564,"pool_token_amount":114971627340963700}],[41,{"iota_amount":115401854213710844,"pool_token_amount":114970669173663083}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":115383958672855189,"pool_token_amount":114969776988466112}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":115330537047612262,"pool_token_amount":114967815907867608}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":115312622363614037,"pool_token_amount":114967405109250343}],[35,{"iota_amount":115292173111324517,"pool_token_amount":114965124004445852}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":105217937553705507,"pool_token_amount":104987313012455525}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}]],"Chainflow":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35409788647552165,"pool_token_amount":34673011613600693}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35395936634215096,"pool_token_amount":34672315662306405}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35388263913714077,"pool_token_amount":34673376279431562}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35378940904241390,"pool_token_amount":34672919516414422}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35368744997799002,"pool_token_amount":34671699776931458}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":43412076220755621,"pool_token_amount":42579672315151533}],[152,{"iota_amount":43406100319523589,"pool_token_amount":42579322391400740}],[151,{"iota_amount":43400186715335746,"pool_token_amount":42579033289082820}],[148,{"iota_amount":43382543651669465,"pool_token_amount":42578168663061769}],[145,{"iota_amount":43364886136720430,"pool_token_amount":42577303939225812}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":43333752707910066,"pool_token_amount":42574338730776608}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":43309863097317438,"pool_token_amount":42572983955145918}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":43303943380169856,"pool_token_amount":42572693949449936}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":43293097775844878,"pool_token_amount":42573092602169277}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":43269577314513662,"pool_token_amount":42572101231051023}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":43257741837589259,"pool_token_amount":42571532228220360}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":43239982313022100,"pool_token_amount":42570658223200416}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":43228142115069700,"pool_token_amount":42570075338351811}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":43180025902030943,"pool_token_amount":42566977226428050}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":43159963813921007,"pool_token_amount":42563824089264340}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":43134952747046881,"pool_token_amount":42563088615388870}],[106,{"iota_amount":43128201369080241,"pool_token_amount":42562754598675600}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":43100783194272242,"pool_token_amount":42561391032396688}],[99,{"iota_amount":44740551632511322,"pool_token_amount":44200657505248202}],[97,{"iota_amount":44726635591660039,"pool_token_amount":44199971928492274}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":44706239015526958,"pool_token_amount":44198960213459099}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":44685591166087603,"pool_token_amount":44197941275889369}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":44637957349794845,"pool_token_amount":44195770637430755}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":44617630043701898,"pool_token_amount":44194801846126824}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":44610732389955072,"pool_token_amount":44194463072798678}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":44590342039058168,"pool_token_amount":44193419079496894}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":44576782888616309,"pool_token_amount":44192746166622396}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":44570002681448199,"pool_token_amount":44192410076888575}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":44513207083212184,"pool_token_amount":44189488930042610}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":44458144124992273,"pool_token_amount":44186288477748362}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":44424106426037401,"pool_token_amount":44184256236123410}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":44410788056858013,"pool_token_amount":44183611980397196}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":40010415586695381,"pool_token_amount":39834128764147422}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27084280535194315,"pool_token_amount":27000364782145286}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":27070717142854052,"pool_token_amount":26999388254791990}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27062066739373944,"pool_token_amount":26999405856747586}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27050035290237434,"pool_token_amount":27000470516898304}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":20027663030388938,"pool_token_amount":20005529696874868}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004800435991001,"pool_token_amount":20000226003028721}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000539900,"pool_token_amount":20000000000010790}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000010533}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"Chainode Tech":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":142958035385106038,"pool_token_amount":139960901742283840}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":142900940354411529,"pool_token_amount":139958765634925152}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":142776332324246486,"pool_token_amount":139947569325771903}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":142756531718752408,"pool_token_amount":139946652467509390}],[148,{"iota_amount":142659258755585636,"pool_token_amount":139943666885501185}],[147,{"iota_amount":142639897403471752,"pool_token_amount":139943096149437272}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":142543621961513572,"pool_token_amount":139940304264233264}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":142524866975188698,"pool_token_amount":139940231472076509}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":142447638127662904,"pool_token_amount":139937824111633396}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":142409342823310620,"pool_token_amount":139936937072287062}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":142390094445653040,"pool_token_amount":139936388891757733}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":142333313518421920,"pool_token_amount":139935706810780868}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":142294647485064908,"pool_token_amount":139934471709798009}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":142253265479821093,"pool_token_amount":139930563675223707}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":142234103876536491,"pool_token_amount":139930002081251411}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":142157146190932413,"pool_token_amount":139927443447016322}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":142122225774389379,"pool_token_amount":139929753960386043}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":142039636848081710,"pool_token_amount":139921995730532827}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":141961470077079073,"pool_token_amount":139918588270775806}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":141725591144519983,"pool_token_amount":139911931667913698}],[98,{"iota_amount":141659781200826143,"pool_token_amount":139910177393089223}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":141572281997656820,"pool_token_amount":139907506248129317}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":141550533326995686,"pool_token_amount":139906796295232163}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":141529065008682580,"pool_token_amount":139906257390617125}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":141441806508072543,"pool_token_amount":139902336935083060}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":141398887538260729,"pool_token_amount":139900991027795231}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":141332708183995362,"pool_token_amount":139896880653662348}],[82,{"iota_amount":141312250805055909,"pool_token_amount":139897042681580293}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":141176799641644045,"pool_token_amount":139865723492036040}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":140885262917779334,"pool_token_amount":139872653832979904}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":140793406845571034,"pool_token_amount":139863227514301200}],[58,{"iota_amount":140766159196467334,"pool_token_amount":139856614423578010}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":140701795135978688,"pool_token_amount":139854148826320750}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":140678919157644108,"pool_token_amount":139852092329946144}],[53,{"iota_amount":140656665481057209,"pool_token_amount":139850657079900409}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":140635832113545037,"pool_token_amount":139850633305241600}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":140459767909395486,"pool_token_amount":139820374964068107}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":140373814637831858,"pool_token_amount":139818090649868563}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":290870382900803457,"pool_token_amount":289809012108653824}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":290779039016417747,"pool_token_amount":289805458116930935}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":290587797719274670,"pool_token_amount":289797793882258966}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":290384384402756652,"pool_token_amount":289786004763378889}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":170146493011515008,"pool_token_amount":169988655968295230}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":151135775838466498,"pool_token_amount":151100721529907548}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":150699994193211591,"pool_token_amount":150699994002980605}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":150000000004141300,"pool_token_amount":150000000000082818}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Chorus One":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":54080953251060883,"pool_token_amount":53009458894272051}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":54059101244255698,"pool_token_amount":53007670522545240}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":54051509069056695,"pool_token_amount":53006772864187313}],[151,{"iota_amount":54036687286531284,"pool_token_amount":53005332678897891}],[149,{"iota_amount":54021845426146677,"pool_token_amount":53003872314838807}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":53978613813285079,"pool_token_amount":53019568958822113}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":53944678313504663,"pool_token_amount":53018629802196732}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":53918322510470106,"pool_token_amount":53018653363708625}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":53911195408835416,"pool_token_amount":53018131726872331}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":51941653342512591,"pool_token_amount":51112383188806046}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":51867714425729609,"pool_token_amount":51114426378277846}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":51826146728070822,"pool_token_amount":51113097091343310}],[106,{"iota_amount":51818187169202139,"pool_token_amount":51112457496902602}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":51785741463703203,"pool_token_amount":51109525828067086}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":51731184887840282,"pool_token_amount":51105576309103202}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":51720484649706071,"pool_token_amount":51109181366121324}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":49967424957381648,"pool_token_amount":49403968941287606}],[88,{"iota_amount":48370271690057824,"pool_token_amount":47831423849303516}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":48356039897420181,"pool_token_amount":47830526313133117}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":46697442180664170,"pool_token_amount":46215168262146206}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":46694371007344132,"pool_token_amount":46218374375944796}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":46714166234290421,"pool_token_amount":46250861135939552}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":46709449036105335,"pool_token_amount":46252531926327891}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":46691403512566763,"pool_token_amount":46253584778809393}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":46682149496808985,"pool_token_amount":46270389143939415}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":46676869074466667,"pool_token_amount":46271800767876012}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":47214288054429489,"pool_token_amount":46882942590602223}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":47208604024039500,"pool_token_amount":46896666938780321}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":47274252063377412,"pool_token_amount":46968257093341508}],[53,{"iota_amount":46864340451483726,"pool_token_amount":46567362125753846}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":46783065306639684,"pool_token_amount":46511938436690961}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":46758661389410100,"pool_token_amount":46520006681332185}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":46141628218439155,"pool_token_amount":45912491876469371}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":45274933977311375,"pool_token_amount":45056372515774157}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":43525518579757756,"pool_token_amount":43339675055682412}],[37,{"iota_amount":43402614866097177,"pool_token_amount":43223280974055640}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":61496899062769681,"pool_token_amount":61296782483020231}],[31,{"iota_amount":61363094272544484,"pool_token_amount":61172787370322622}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":50313536902738581,"pool_token_amount":50173513831948263}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":41352630470643454,"pool_token_amount":41244518786446533}],[26,{"iota_amount":94872571850944512,"pool_token_amount":94751612564350375}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":88042403058745881,"pool_token_amount":88003390297898862}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000002273548}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000172313}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000147259}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000147259}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000147259}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000141726}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000140351}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Citadel.one":[[167,{"iota_amount":107406082183618986,"pool_token_amount":105129567882884570}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":107391618860056758,"pool_token_amount":105128787738772398}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":107320038369811515,"pool_token_amount":105125581100859966}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":107244042656128262,"pool_token_amount":105119573067406285}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[149,{"iota_amount":107153054092014711,"pool_token_amount":105126798222941140}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[146,{"iota_amount":107103914630372440,"pool_token_amount":105119678770872358}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":107054601088447237,"pool_token_amount":105112125984241578}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":107024831612910544,"pool_token_amount":105110122877981881}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":106979851021198371,"pool_token_amount":105106818125401518}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":106965577215117279,"pool_token_amount":105106439890856073}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":112422352596839808,"pool_token_amount":110541027965248960}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":116709056489353127,"pool_token_amount":114905528769455124}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":116694269987236747,"pool_token_amount":114905858879158388}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":116678179172202629,"pool_token_amount":114904899482915869}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":116576833119589336,"pool_token_amount":114909866352659871}],[112,{"iota_amount":116558594028718868,"pool_token_amount":114906882650251984}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":116401308064499356,"pool_token_amount":114901326300914456}],[100,{"iota_amount":124415995423891311,"pool_token_amount":122869345889362156}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":124298218354724220,"pool_token_amount":122862726179721904}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":138372681131037020,"pool_token_amount":136836900437570441}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":138165218675109114,"pool_token_amount":136830216703539781}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":138143821815058664,"pool_token_amount":136829555057972350}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":138105457604604295,"pool_token_amount":136831114041690491}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":138084758940797735,"pool_token_amount":136830386619147659}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":138001661368642461,"pool_token_amount":136827654384984771}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":137957031989117001,"pool_token_amount":136825084627885541}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":137913136870763346,"pool_token_amount":136823470730751843}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":137891060870463173,"pool_token_amount":136822526093851396}],[67,{"iota_amount":137868259029041346,"pool_token_amount":136820966704251900}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":137752811823759485,"pool_token_amount":136847560126604818}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":137731896982169368,"pool_token_amount":136846601287885984}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":137629864501462707,"pool_token_amount":136824622407835570}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":137565392791742818,"pool_token_amount":136820464179140355}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":135567963800160780,"pool_token_amount":134972106176280701}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":135413845837989264,"pool_token_amount":134958571255683046}],[37,{"iota_amount":135392350864566672,"pool_token_amount":134957488598172650}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":135347619677642545,"pool_token_amount":134955006554861147}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":119180157721560771,"pool_token_amount":118971376586994786}],[26,{"iota_amount":105134187484493701,"pool_token_amount":104994092822569334}],[25,{"iota_amount":80113555197234743,"pool_token_amount":80022944607766672}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80072220866053486,"pool_token_amount":80016602158353330}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}]],"Cogent Crypto":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":107207805969636319,"pool_token_amount":105015247359294744}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":107194424316230440,"pool_token_amount":105015247340614492}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":107113617093432410,"pool_token_amount":105015269934046747}],[157,{"iota_amount":107099860027799498,"pool_token_amount":105015269969364557}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":107072347882255574,"pool_token_amount":105015270318536719}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":107058590091578971,"pool_token_amount":105015270467076362}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":107044663439285133,"pool_token_amount":105015105569926655}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":106921613729711161,"pool_token_amount":105015180450721069}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":106895470215720781,"pool_token_amount":105016170297961646}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":106881893026007289,"pool_token_amount":105016170478698747}],[139,{"iota_amount":106851414698235033,"pool_token_amount":105012908964976826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":106781818704856353,"pool_token_amount":105011291802314570}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":106768232414246738,"pool_token_amount":105011292011510318}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":106687644282284084,"pool_token_amount":105012242777418926}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":106659614664244470,"pool_token_amount":105011389630339426}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":106646036823880220,"pool_token_amount":105011393649042301}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":106632466193037270,"pool_token_amount":105011403800516702}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":106592233103621247,"pool_token_amount":105011903576324070}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":106315911477872597,"pool_token_amount":105010781291881295}],[100,{"iota_amount":106300381952951661,"pool_token_amount":105010780335637485}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":106192344527397873,"pool_token_amount":105010749653772835}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":106131608158666886,"pool_token_amount":105010545312023228}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":106025314460746792,"pool_token_amount":105009488496473232}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":105988030798020476,"pool_token_amount":105002817299634764}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":105973121201740768,"pool_token_amount":105002866415841452}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":105943204635614329,"pool_token_amount":105002844368501292}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":105867514671167587,"pool_token_amount":105003206809088014}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":105820076124741795,"pool_token_amount":105003211792730189}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":105804197670344125,"pool_token_amount":105003211931587851}],[67,{"iota_amount":105787828067497427,"pool_token_amount":105002724452120633}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":105680983825024918,"pool_token_amount":105002650095807499}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":105560931901563905,"pool_token_amount":104988105625592095}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":105545649979922298,"pool_token_amount":104987975020501584}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":105530502973929311,"pool_token_amount":104987976114569684}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":105486551321663789,"pool_token_amount":104989462671472338}],[45,{"iota_amount":105442476767433184,"pool_token_amount":104990824180489232}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":105427333327648932,"pool_token_amount":104990828006620240}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":106354017750438671,"pool_token_amount":105990813326963723}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":106291394426795312,"pool_token_amount":105992020108702764}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":106274422562672731,"pool_token_amount":105991975631158148}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":106257450628970816,"pool_token_amount":105991934296959032}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":106241384456106218,"pool_token_amount":105992928673921661}],[31,{"iota_amount":106222766814646827,"pool_token_amount":105991347733069284}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":106156732660136850,"pool_token_amount":105995912379614449}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002203900,"pool_token_amount":80000000000000000}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001944400,"pool_token_amount":80000000000000000}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840600,"pool_token_amount":80000000000000000}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840600,"pool_token_amount":80000000000000000}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840600,"pool_token_amount":80000000000000000}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}]],"Coinbase Cloud":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":88914549388206032,"pool_token_amount":87260808812530140}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[147,{"iota_amount":88814510828742909,"pool_token_amount":87248168714767575}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":88741004170319277,"pool_token_amount":87239822226145181}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":88706062613253975,"pool_token_amount":87237434118232869}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":88645202401443850,"pool_token_amount":87230895712583068}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":88633293439042599,"pool_token_amount":87229845284394832}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":88608840055103019,"pool_token_amount":87227122305512933}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":88579882483035166,"pool_token_amount":87219798847448114}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":88528204939460923,"pool_token_amount":87211332628981351}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":88513146704505513,"pool_token_amount":87207084016899067}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":88477122828887681,"pool_token_amount":87203349956971873}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":88465912329671950,"pool_token_amount":87202977483741604}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":88453875646049197,"pool_token_amount":87201790111371524}],[116,{"iota_amount":88432399549937142,"pool_token_amount":87201971549949104}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":88408130863671535,"pool_token_amount":87199399743615744}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":88385700422339490,"pool_token_amount":87198642480983868}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":88345052711918964,"pool_token_amount":87191796456751209}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":81202538526639672,"pool_token_amount":80175656596058555}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":81160970481248452,"pool_token_amount":80168714468738974}],[102,{"iota_amount":81148250744756966,"pool_token_amount":80167460720204198}],[99,{"iota_amount":81109600770097577,"pool_token_amount":80162959814647964}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":81073315456385888,"pool_token_amount":80160627291947101}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":81034496220253609,"pool_token_amount":80155659737302221}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":80911213280326687,"pool_token_amount":80142981999170688}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":80887257269063737,"pool_token_amount":80141081173918848}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":80739676248268495,"pool_token_amount":80117280120078120}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":80713868200887503,"pool_token_amount":80114701945680810}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":80552635876344416,"pool_token_amount":80076356462862348}],[56,{"iota_amount":80562770503738770,"pool_token_amount":80097374004013606}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":80551331018925673,"pool_token_amount":80096940635231529}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":80500858391837456,"pool_token_amount":80090816635191553}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":80444129029648963,"pool_token_amount":80111697527371606}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":80423911299137841,"pool_token_amount":80113778340557392}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":80374381512812731,"pool_token_amount":80109284997077117}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":80353064920585107,"pool_token_amount":80110840618833373}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":80310991122644322,"pool_token_amount":80105399807338553}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":80272463815920138,"pool_token_amount":80103816694961694}],[29,{"iota_amount":80240265605912857,"pool_token_amount":80084281137364170}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":120121085039220710,"pool_token_amount":120012858608996896}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80107243722791027,"pool_token_amount":80053240670599132}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80021048452971536,"pool_token_amount":80002423622832443}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":80000000063519457,"pool_token_amount":80000000001270376}],[18,{"iota_amount":80000000061655557,"pool_token_amount":80000000001233099}],[17,{"iota_amount":80000000049632057,"pool_token_amount":80000000000992630}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002203900,"pool_token_amount":80000000000044070}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002152000,"pool_token_amount":80000000000043033}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001944400,"pool_token_amount":80000000000038882}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840600,"pool_token_amount":80000000000036807}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823300,"pool_token_amount":80000000000036462}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"ComingChat":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":28463675459547091,"pool_token_amount":27926896514497238}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":28452321064330866,"pool_token_amount":27925758693454604}],[157,{"iota_amount":28448511929708881,"pool_token_amount":27925384829118793}],[156,{"iota_amount":28444692724484111,"pool_token_amount":27925000740791627}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":28437044360653470,"pool_token_amount":27924223322007977}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":28432753118023934,"pool_token_amount":27923376217690560}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":28406336891847696,"pool_token_amount":27921006569400592}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":28398379301090006,"pool_token_amount":27919933748339392}],[143,{"iota_amount":28394574032967564,"pool_token_amount":27919565010417363}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":28364020493535311,"pool_token_amount":27916520493301352}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":28360218188438285,"pool_token_amount":27916156243399528}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":28341988836830724,"pool_token_amount":27915112461599480}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":28338179501177277,"pool_token_amount":27914744440325659}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":28318956515283324,"pool_token_amount":27912710996008318}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":28321966749244834,"pool_token_amount":27922444047325507}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":28318186635290983,"pool_token_amount":27922098968228146}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":28291067961775178,"pool_token_amount":27922415380153372}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":28283839004419633,"pool_token_amount":27922052362497950}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":28277688277587911,"pool_token_amount":27923509733753733}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":28264775035487188,"pool_token_amount":27922318877635167}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[101,{"iota_amount":28248105769705079,"pool_token_amount":27921500754936167}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":28187681550346928,"pool_token_amount":27922116234749930}],[84,{"iota_amount":28183863544039400,"pool_token_amount":27922104830836409}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":28170643427567791,"pool_token_amount":27920121767440030}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":28167575233537033,"pool_token_amount":27920952979743226}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":28158350477344736,"pool_token_amount":27930263756701998}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":28152023187744325,"pool_token_amount":27931528863636878}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":28138655183397713,"pool_token_amount":27930176029048547}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":28129467086288302,"pool_token_amount":27929000134825463}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":28117450693627330,"pool_token_amount":27928986214820019}],[64,{"iota_amount":28113166647153362,"pool_token_amount":27928506155400033}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":28109030604604224,"pool_token_amount":27928173329595839}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":28085166818159359,"pool_token_amount":27923145709454424}],[56,{"iota_amount":28077431531786683,"pool_token_amount":27923013532739940}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":28051964205069460,"pool_token_amount":27920367015285224}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":28047499031664099,"pool_token_amount":27919705862928915}],[47,{"iota_amount":28039239968323626,"pool_token_amount":27919051748586408}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":28023178378932909,"pool_token_amount":27918196709942772}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":28019197404062445,"pool_token_amount":27925592818304495}],[39,{"iota_amount":28014687516890535,"pool_token_amount":27924986210692435}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":28015881366411440,"pool_token_amount":27958747041936385}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27948628780081799,"pool_token_amount":27909012002583526}],[25,{"iota_amount":20940517851008343,"pool_token_amount":20918348989513696}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20007327815991001,"pool_token_amount":20002752805100917}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"ContributionDAO":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":164384858116336134,"pool_token_amount":160950273799944227}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":166870175485885992,"pool_token_amount":163446829962754937}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":166762664561014249,"pool_token_amount":163449622738997413}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":171656119979301668,"pool_token_amount":168357978272732954}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[146,{"iota_amount":171562619594415091,"pool_token_amount":168354906988604968}],[145,{"iota_amount":171539331063793423,"pool_token_amount":168354126208424638}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":171447044581001781,"pool_token_amount":168351795964222834}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":173817701384548551,"pool_token_amount":170769492956330425}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":173608983078978238,"pool_token_amount":170765940942128741}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":173534204843560009,"pool_token_amount":170781821340314889}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":173441362353087590,"pool_token_amount":170757591756228110}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":173417893293727589,"pool_token_amount":170756898578611854}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":173348450661717623,"pool_token_amount":170755766824265324}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":173230444758528969,"pool_token_amount":170751634255896785}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":173194954378111553,"pool_token_amount":170761538019387817}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":173019039971374319,"pool_token_amount":170767063800148781}],[102,{"iota_amount":172991860562966398,"pool_token_amount":170766259987883938}],[98,{"iota_amount":172886734929657115,"pool_token_amount":170765526691278326}],[97,{"iota_amount":172856411713878258,"pool_token_amount":170761056231547097}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":172803196611882425,"pool_token_amount":170759527399312257}],[94,{"iota_amount":172776618331402674,"pool_token_amount":170758765478366535}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":172724489731257692,"pool_token_amount":170757911534800446}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":172433801337669237,"pool_token_amount":170645900037110253}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":172323977431512483,"pool_token_amount":170636894076567931}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":172296949550218528,"pool_token_amount":170636001854383568}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":172245066371664352,"pool_token_amount":170634414760461696}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":172171324595306711,"pool_token_amount":170636027371623444}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":232014369045137219,"pool_token_amount":230411316005419493}],[61,{"iota_amount":231979679198360030,"pool_token_amount":230410483016542845}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":231944586430933419,"pool_token_amount":230409256275922183}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":231910117154478691,"pool_token_amount":230408638485991881}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":231665017888331586,"pool_token_amount":230402061444264705}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":231437647034198444,"pool_token_amount":230414268347426375}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":231367468786063792,"pool_token_amount":230412657393514363}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":231296993332003246,"pool_token_amount":230411296703256947}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":171216209892595208,"pool_token_amount":170637808821354472}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":171166936577431191,"pool_token_amount":170640973346031054}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":171112348207293251,"pool_token_amount":170642016038660056}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":170979843956704996,"pool_token_amount":170622403747245364}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":200924629241227068,"pool_token_amount":200578604616873409}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":150635151102499971,"pool_token_amount":150600252037017451}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":150399001193211591,"pool_token_amount":150399001003360554}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":150000001116171591,"pool_token_amount":150000001002323420}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":150000000004141300,"pool_token_amount":150000000000082818}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":150000000003652300,"pool_token_amount":150000000000073040}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":150000000000000000,"pool_token_amount":150000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Cosmostation":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":62519184749121786,"pool_token_amount":61218068270816353}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":62512572583848752,"pool_token_amount":61219578600017324}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":62497185016804999,"pool_token_amount":61212687603700174}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":62283033259586780,"pool_token_amount":61060138298515259}],[151,{"iota_amount":62255343478020503,"pool_token_amount":61041178899081599}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":62126171317968074,"pool_token_amount":60963177780383500}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":62146128885575718,"pool_token_amount":61007084472527030}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":62135726053437039,"pool_token_amount":61004978091254334}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":62104214303974874,"pool_token_amount":60990405242455411}],[138,{"iota_amount":62102568925932558,"pool_token_amount":60996908281103934}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":62014071580228635,"pool_token_amount":60934342927864214}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":61987779166830548,"pool_token_amount":60932864695270223}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61909138043938543,"pool_token_amount":60879939343466564}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":61857524031022491,"pool_token_amount":60845443991475031}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":61823687784102379,"pool_token_amount":60820189869627136}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":61762381327179564,"pool_token_amount":60775938735086494}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":61699118417289499,"pool_token_amount":60778414425113034}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":61797730793895232,"pool_token_amount":60916352565956710}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":61736691419853675,"pool_token_amount":60873529798553550}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":61715277007317657,"pool_token_amount":60861464303559765}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":62640434102520000,"pool_token_amount":61896961428110144}],[94,{"iota_amount":62619420751975078,"pool_token_amount":61885625971831149}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":62592428321710388,"pool_token_amount":61868249035075106}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":62260242577486533,"pool_token_amount":61613151320741684}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":61802460577884500,"pool_token_amount":61196382829439248}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":61732371362429901,"pool_token_amount":61163674309617290}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":61647415656713789,"pool_token_amount":61125468611036690}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":61529044034002753,"pool_token_amount":61102346778432297}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":61558788162134750,"pool_token_amount":61204744041918738}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":61542839706022923,"pool_token_amount":61216292252554819}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":61522094502311688,"pool_token_amount":61213965541379444}],[48,{"iota_amount":60192333450565162,"pool_token_amount":59899937118440345}],[47,{"iota_amount":60186572054858265,"pool_token_amount":59903200695603127}],[45,{"iota_amount":60167518817932864,"pool_token_amount":59902231450720866}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":60137263281299123,"pool_token_amount":59890109384247530}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":45284812687764803,"pool_token_amount":45119375707648245}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":27770541328762752,"pool_token_amount":27695096560602518}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27711390383903623,"pool_token_amount":27654362412042329}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":27549723497508046,"pool_token_amount":27497598504318174}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":20519078129426077,"pool_token_amount":20491507790020986}],[25,{"iota_amount":20062522493480638,"pool_token_amount":20039702184294168}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000000507924}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":20000000012328401,"pool_token_amount":20000000000246557}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000539900,"pool_token_amount":20000000000010790}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Cypher Capital":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27536875750219004,"pool_token_amount":27000961445357885}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":27523861787362059,"pool_token_amount":27000938673622838}],[161,{"iota_amount":27520620998211608,"pool_token_amount":27000941849579642}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27514055893754746,"pool_token_amount":27000962690733229}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27510718991636619,"pool_token_amount":27000963739218610}],[157,{"iota_amount":27507668405587819,"pool_token_amount":27001245910345879}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27500993881894685,"pool_token_amount":27001247051502824}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":27477138071521897,"pool_token_amount":27000768583039884}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27473787648484808,"pool_token_amount":27000758789679148}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27464038440734772,"pool_token_amount":27000764747052716}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":27450750655027401,"pool_token_amount":27000480907624011}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":27447500217935035,"pool_token_amount":27000481196129132}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27421371187519271,"pool_token_amount":27000376444620660}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27414684228253039,"pool_token_amount":27000200452602857}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":27405605200240322,"pool_token_amount":27000869811614678}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27402355668508966,"pool_token_amount":27000870890984506}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27399248831950581,"pool_token_amount":27001012967319843}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27392772073344406,"pool_token_amount":27001038005433548}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":27379773313354645,"pool_token_amount":27001038998488234}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27364760957454912,"pool_token_amount":27002255993532020}],[112,{"iota_amount":27361095495736577,"pool_token_amount":27001845458399758}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27347435582189446,"pool_token_amount":27001909985820610}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27343754985326573,"pool_token_amount":27001941672664053}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27328638824600972,"pool_token_amount":27001939032589038}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27297890838209768,"pool_token_amount":27001047726338283}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27290447847016634,"pool_token_amount":27001033658057914}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27283147384655587,"pool_token_amount":27001042715463291}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27261013342247848,"pool_token_amount":27000711952536311}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27209994165049538,"pool_token_amount":27000839902279679}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":27202277096692741,"pool_token_amount":27000828156765046}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27161550036004983,"pool_token_amount":26997333649082802}],[58,{"iota_amount":27157949148668486,"pool_token_amount":26997333692701212}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27148032283830513,"pool_token_amount":26998215129700362}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27140619975178699,"pool_token_amount":26998205838876158}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":27754389969509502,"pool_token_amount":27619970012298412}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27105854365198213,"pool_token_amount":26996672715681242}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27083320945488131,"pool_token_amount":26996349150830067}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":27071702202441299,"pool_token_amount":26996357109312650}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27063121762563623,"pool_token_amount":26995982050313244}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27047658154124729,"pool_token_amount":26997033952637780}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27033489747759826,"pool_token_amount":26991994335921175}],[24,{"iota_amount":20020601696933047,"pool_token_amount":20002166498497671}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":20000000007017893,"pool_token_amount":20000000000140348}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000539900,"pool_token_amount":20000000000010790}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000010533}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}]],"DSRV":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":137963016637127908,"pool_token_amount":135102872277069316}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":137926385218785058,"pool_token_amount":135101299111054378}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":137858998325742264,"pool_token_amount":135104840939317018}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":137785716586466793,"pool_token_amount":135103752938575248}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":137766761407287419,"pool_token_amount":135102813451236595}],[151,{"iota_amount":137728947390623029,"pool_token_amount":135101217043191731}],[149,{"iota_amount":137691253746787644,"pool_token_amount":135099737965663351}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":137660896365330409,"pool_token_amount":135105091824639617}],[146,{"iota_amount":137642267461327884,"pool_token_amount":135104389106167030}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":137566741198477203,"pool_token_amount":135117997030388331}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":137517389092589614,"pool_token_amount":135122037273372253}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":137498896878136665,"pool_token_amount":135121399607071910}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":137432569458110987,"pool_token_amount":135126295829319420}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":137376652228232271,"pool_token_amount":135124099250780988}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":137347171984008825,"pool_token_amount":135147746610887320}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":137272650407492204,"pool_token_amount":135144554293457112}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":137198613374795340,"pool_token_amount":135141826156395258}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":137162269507748038,"pool_token_amount":135141116045708697}],[116,{"iota_amount":137144443633324228,"pool_token_amount":135141099423694860}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":137106447223271924,"pool_token_amount":135138947188009398}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":136990975962631765,"pool_token_amount":135134586925819454}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":136968036411680263,"pool_token_amount":135131701760965754}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":136946539095120905,"pool_token_amount":135130756786301341}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[98,{"iota_amount":136775235236496314,"pool_token_amount":135123984074261243}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":136691136657491831,"pool_token_amount":135120797032679676}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":136607454720849562,"pool_token_amount":135117022565421377}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":136566119811591526,"pool_token_amount":135115366206837655}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":136507237924502945,"pool_token_amount":135115922267389648}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":136438102501667544,"pool_token_amount":135125544402614939}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":136350833142315120,"pool_token_amount":135137151519719852}],[74,{"iota_amount":136310910122784457,"pool_token_amount":135136500478169887}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":136179730839072490,"pool_token_amount":135150658434617056}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":136132230454290463,"pool_token_amount":135145020831286122}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":136072080177740536,"pool_token_amount":135143985035282446}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":136028824998582310,"pool_token_amount":135140130048625117}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":135963976501082518,"pool_token_amount":135134529809135353}],[56,{"iota_amount":135942199940277584,"pool_token_amount":135132505730355926}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":135774570172051718,"pool_token_amount":135123798431862670}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":135670452708013156,"pool_token_amount":135099485959960333}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":135628428465983539,"pool_token_amount":135097480468167306}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":135607453813013951,"pool_token_amount":135096676345486694}],[40,{"iota_amount":135586405179843407,"pool_token_amount":135095797405103136}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105427815284828088,"pool_token_amount":105177837112827071}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":105095578425649817,"pool_token_amount":104915865207057700}],[26,{"iota_amount":130084127584822057,"pool_token_amount":129916052005953240}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":26020681646333831,"pool_token_amount":26014579051656928}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}]],"Dankuzone_w_DAIC":[[167,{"iota_amount":138080083416507696,"pool_token_amount":135167029376847076}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":138061837641894298,"pool_token_amount":135166314942586174}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":138043595774316778,"pool_token_amount":135165600570724121}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":138025350058828201,"pool_token_amount":135164885957495829}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":137879442942225766,"pool_token_amount":135161071809948553}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":137841752093305435,"pool_token_amount":135159593801987374}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":137785112423688894,"pool_token_amount":135157184920686186}],[149,{"iota_amount":137747418779853509,"pool_token_amount":135155705833628269}],[147,{"iota_amount":137710112499552665,"pool_token_amount":135154240620814965}],[146,{"iota_amount":137691453240475021,"pool_token_amount":135153508102373389}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":137544930218913138,"pool_token_amount":135149993801334068}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":137507765109717997,"pool_token_amount":135148532985656918}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":137452066183831292,"pool_token_amount":135146343921982824}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":137433394734349457,"pool_token_amount":135145609591802482}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":137377558006107984,"pool_token_amount":135143411126249089}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":137340414445455947,"pool_token_amount":135141960962194826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":137321819850859809,"pool_token_amount":135141199800307774}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":137229006908621420,"pool_token_amount":135137542449771813}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":137191096683909441,"pool_token_amount":135135292658800142}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":137172542673512735,"pool_token_amount":135134562566531638}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":140267602802911162,"pool_token_amount":138368372478377374}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":140246308144662790,"pool_token_amount":138367532224860138}],[106,{"iota_amount":140224350174350652,"pool_token_amount":138366566219151502}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":140202239569158620,"pool_token_amount":138365702044250767}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":140180185725225756,"pool_token_amount":138364831441564367}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":140026662576722300,"pool_token_amount":138358150354157529}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":139831339731203777,"pool_token_amount":138347710903317466}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":139767213443742347,"pool_token_amount":138344566569057947}],[84,{"iota_amount":139746047867667554,"pool_token_amount":138343605033759798}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":139724767393719270,"pool_token_amount":138342635008261689}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":139639847237545302,"pool_token_amount":138339269164782443}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":139545255194387667,"pool_token_amount":138345465069493390}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":139412753603668193,"pool_token_amount":138340202867525305}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":139340453392872240,"pool_token_amount":138352307878795715}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":139297464420419605,"pool_token_amount":138349667339099827}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":139126636410988266,"pool_token_amount":138340541714142121}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":139060235386822738,"pool_token_amount":138335311498139311}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":138982126920488357,"pool_token_amount":138338701109536182}],[46,{"iota_amount":138960899838722887,"pool_token_amount":138337855957141578}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":138875862764554333,"pool_token_amount":138334450835922404}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":138832346120875683,"pool_token_amount":138332236713545847}],[39,{"iota_amount":138818442967931451,"pool_token_amount":138339010134456434}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":83738601953438460,"pool_token_amount":83500301328716065}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":80420087405893087,"pool_token_amount":80256121167999926}],[29,{"iota_amount":80161854581012482,"pool_token_amount":80011597637622209}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019005353317487,"pool_token_amount":80000380998369127}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":80000000062001508,"pool_token_amount":80000000001240018}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Durian":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":112267558263135962,"pool_token_amount":110230936368613960}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":112223052049043288,"pool_token_amount":110226565964074639}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":112147889304559927,"pool_token_amount":110219181624430528}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":112025341842676628,"pool_token_amount":110207265934664426}],[149,{"iota_amount":112010002903850323,"pool_token_amount":110205756934143752}],[146,{"iota_amount":111963019072553158,"pool_token_amount":110199849530244235}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":111902415446230020,"pool_token_amount":110193883512725326}],[136,{"iota_amount":111811477203248373,"pool_token_amount":110184925799770217}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":111796324152728200,"pool_token_amount":110183432537771751}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":111781175338271632,"pool_token_amount":110181944044877418}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":111736479321134839,"pool_token_amount":110178228418045972}],[130,{"iota_amount":111721318211706225,"pool_token_amount":110176733449909262}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":111691179754320532,"pool_token_amount":110173761090014635}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":111676021886553934,"pool_token_amount":110172265895985840}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":111660968323272814,"pool_token_amount":110170779033589194}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":111645920333820480,"pool_token_amount":110169295215933111}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":111630869567627884,"pool_token_amount":110167810044976076}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[122,{"iota_amount":111600767370981176,"pool_token_amount":110164839096778408}],[121,{"iota_amount":111585718030759838,"pool_token_amount":110163353525803186}],[120,{"iota_amount":111570575482516635,"pool_token_amount":110161860363946524}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":111540285177472290,"pool_token_amount":110158869395202733}],[115,{"iota_amount":111494853657740427,"pool_token_amount":110154377426622797}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":111463978144692063,"pool_token_amount":110150802286329956}],[111,{"iota_amount":111433690465308719,"pool_token_amount":110147809017034600}],[110,{"iota_amount":111418540924322977,"pool_token_amount":110146311544228286}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[101,{"iota_amount":111262854764800132,"pool_token_amount":110130773163864372}],[100,{"iota_amount":111245533142896723,"pool_token_amount":110129059518019194}],[98,{"iota_amount":111210846873555936,"pool_token_amount":110125543495444120}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":111159227488275607,"pool_token_amount":110120426759873934}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[92,{"iota_amount":111108029005125132,"pool_token_amount":110115354947391209}],[91,{"iota_amount":111091128622996337,"pool_token_amount":110113680007841474}],[88,{"iota_amount":111040592186085280,"pool_token_amount":110108670143997350}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":110906463518233142,"pool_token_amount":110095820351163048}],[78,{"iota_amount":110873091255231928,"pool_token_amount":110092505506146723}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":110856407727769952,"pool_token_amount":110090847111845389}],[74,{"iota_amount":110806130373018823,"pool_token_amount":110085616571945580}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":110735555299407114,"pool_token_amount":110077912873537262}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[63,{"iota_amount":123167566926711444,"pool_token_amount":122559535783128935}],[60,{"iota_amount":123111367164326325,"pool_token_amount":122553480573901455}],[56,{"iota_amount":123037126207873879,"pool_token_amount":122546087720432536}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":122943324541879711,"pool_token_amount":122536748703684554}],[49,{"iota_amount":122905752993538340,"pool_token_amount":122532996540078638}],[48,{"iota_amount":122886968934813259,"pool_token_amount":122531123831150087}],[45,{"iota_amount":122830620970753970,"pool_token_amount":122525500987837353}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":122811837847620318,"pool_token_amount":122523625545853435}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[40,{"iota_amount":122738165301376243,"pool_token_amount":122518085489366982}],[39,{"iota_amount":122719047108522842,"pool_token_amount":122516176199742487}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":122680666455669859,"pool_token_amount":122512344209576959}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":122661126172852919,"pool_token_amount":122510392862215734}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":122619947322425958,"pool_token_amount":122506232213155640}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Everstake":[[167,{"iota_amount":142807814844400421,"pool_token_amount":139915388182180342}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":142755276649338752,"pool_token_amount":139914966400649257}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":142668308449215587,"pool_token_amount":139915395390638255}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":142646923007800151,"pool_token_amount":139911968057284587}],[157,{"iota_amount":142628927969922627,"pool_token_amount":139911866109265261}],[156,{"iota_amount":142612293886035551,"pool_token_amount":139913097806804180}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":142553129466176960,"pool_token_amount":139907712189942118}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[150,{"iota_amount":142497353928904084,"pool_token_amount":139905652561190858}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":86799377164006941,"pool_token_amount":85263290878246503}],[145,{"iota_amount":86913965466182396,"pool_token_amount":85386480891838675}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":86891645334307783,"pool_token_amount":85385775249981104}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":86858612950253401,"pool_token_amount":85385143979313986}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":86847814094820369,"pool_token_amount":85385144734298588}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":86814010880531092,"pool_token_amount":85383796119505059}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":86989285207594538,"pool_token_amount":85694716411568756}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":86977543242634697,"pool_token_amount":85693790127055006}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":86931768006466329,"pool_token_amount":85691331250097953}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":86884548024335412,"pool_token_amount":85687709125545605}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":86835643548359176,"pool_token_amount":85682431841782889}],[109,{"iota_amount":86858160445957156,"pool_token_amount":85716599000094488}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":86815010731465766,"pool_token_amount":85710264988386857}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":86773929952778410,"pool_token_amount":85707097718944487}],[99,{"iota_amount":86718514545540289,"pool_token_amount":85701691549308646}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":86643199287062388,"pool_token_amount":85700317041390445}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":86630799747285777,"pool_token_amount":85700076354670299}],[91,{"iota_amount":86615534451865062,"pool_token_amount":85696972481870354}],[90,{"iota_amount":86597381657834345,"pool_token_amount":85690980801647459}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":86544027634107068,"pool_token_amount":85685991533340907}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":86430991017804854,"pool_token_amount":85585969727140681}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":86370404126001794,"pool_token_amount":85585697406562242}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":86356644537015932,"pool_token_amount":85583932870432048}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":86322790608735465,"pool_token_amount":85597821608625581}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":36122599071277852,"pool_token_amount":35850174350039561}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":36117875196316832,"pool_token_amount":35850661227931114}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":36057160086425352,"pool_token_amount":35835750307537514}],[57,{"iota_amount":36046229392550506,"pool_token_amount":35834845292752257}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":36033540217560529,"pool_token_amount":35837279833773449}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":35937688889289594,"pool_token_amount":35811986967819966}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35910852347053993,"pool_token_amount":35806063668195359}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35877912547779336,"pool_token_amount":35789838643085958}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35865950143283234,"pool_token_amount":35783526668662324}],[31,{"iota_amount":35862889594629692,"pool_token_amount":35786085908081500}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35875187600549083,"pool_token_amount":35803974279050581}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35861744741958327,"pool_token_amount":35802112905141738}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000031979264,"pool_token_amount":25000000000639572}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Figment":[[167,{"iota_amount":292743642775759795,"pool_token_amount":286983970506020159}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":291523528851287664,"pool_token_amount":285855783676031397}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":291444822731714201,"pool_token_amount":285846548652630199}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":291406029639003614,"pool_token_amount":285877286535784655}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":291325264865836623,"pool_token_amount":285866938319057748}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":290938382323267860,"pool_token_amount":285592204010232568}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":290817896775832045,"pool_token_amount":285578901407950349}],[148,{"iota_amount":283792402875372040,"pool_token_amount":278851178036127116}],[147,{"iota_amount":283752787109841267,"pool_token_amount":278846227777308756}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":283351212973998446,"pool_token_amount":278756435517782366}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":275114149409027680,"pool_token_amount":270850481360075857}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":285040150213521019,"pool_token_amount":280692170187570658}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":285001665349129436,"pool_token_amount":280688374201156796}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":283176416489789132,"pool_token_amount":278992489857477649}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":283108343933225978,"pool_token_amount":278959340778255276}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":282917168595728151,"pool_token_amount":278974341120296874}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":282878796128614259,"pool_token_amount":278970440103571712}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":271607209499381778,"pool_token_amount":267992531521566520}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":271570640782890514,"pool_token_amount":267989133698667147}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":271446068579788185,"pool_token_amount":267931606134779372}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":271409168172897213,"pool_token_amount":267927892801510410}],[109,{"iota_amount":271392679306863261,"pool_token_amount":267947976891255946}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":271344023847870244,"pool_token_amount":267936296423971220}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":207957982878284414,"pool_token_amount":205861336931255317}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":201735598303361325,"pool_token_amount":199918798669038221}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":201704228860793560,"pool_token_amount":199914809728174711}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":126665348941072051,"pool_token_amount":125576284188324766}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":126716705623580901,"pool_token_amount":125695177118723916}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":126664080936609335,"pool_token_amount":125714275263664706}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":125390481226779874,"pool_token_amount":124539861942466116}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":125351323341784029,"pool_token_amount":124535838077392571}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":135175605670953098,"pool_token_amount":134352237904087001}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":135140513307421238,"pool_token_amount":134335556161003829}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":135098025740606303,"pool_token_amount":134329710596287866}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":118803634776285189,"pool_token_amount":118192617498425390}],[53,{"iota_amount":118785430173449732,"pool_token_amount":118190729571815216}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":118767236950132408,"pool_token_amount":118188852267904324}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":117743497393932472,"pool_token_amount":117202212035851224}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":116725062411805344,"pool_token_amount":116204389183489566}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":97425390702465801,"pool_token_amount":97112421153483550}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":71988979532118606,"pool_token_amount":71864217406875960}],[29,{"iota_amount":71976178396788602,"pool_token_amount":71862731076251528}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":153275492884432024,"pool_token_amount":153239949469566931}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":150000000116171591,"pool_token_amount":150000000002323421}],[16,{"iota_amount":150000000053253526,"pool_token_amount":150000000001065062}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":150000000003652300,"pool_token_amount":150000000000073041}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069130}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":150000005003424100,"pool_token_amount":150000005000068478}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":150000005003391500,"pool_token_amount":150000005000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":150000000000000000,"pool_token_amount":150000000000000000}]],"Forbole":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":27642822756141381,"pool_token_amount":27126156519265838}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":27624047329178017,"pool_token_amount":27124110091027145}],[151,{"iota_amount":27620338160797721,"pool_token_amount":27123745886583784}],[150,{"iota_amount":27616601147076411,"pool_token_amount":27123354156736969}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[148,{"iota_amount":27609182356984187,"pool_token_amount":27122625483172203}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27594428492188599,"pool_token_amount":27121262411449704}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27583295656833484,"pool_token_amount":27120168083713941}],[140,{"iota_amount":27579584060779168,"pool_token_amount":27119803155449955}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27572155545207219,"pool_token_amount":27122361915210868}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27564543863186190,"pool_token_amount":27121451105599050}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27560830649349109,"pool_token_amount":27121085752615374}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27553907668126423,"pool_token_amount":27120851770279555}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27556977028396919,"pool_token_amount":27136960375176111}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27553298333507867,"pool_token_amount":27136629566186357}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27542513468714026,"pool_token_amount":27135612883551777}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27511167000244482,"pool_token_amount":27130787406930810}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":27492111978575890,"pool_token_amount":27128461913238457}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27488399839040130,"pool_token_amount":27128095609076314}],[109,{"iota_amount":27484296333707292,"pool_token_amount":27127710390235543}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27486171238866479,"pool_token_amount":27133226187367375}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":27453679858301709,"pool_token_amount":27123847043322726}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27407942968932371,"pool_token_amount":27119612254177374}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27399852874618436,"pool_token_amount":27118810810788890}],[88,{"iota_amount":27395815242829627,"pool_token_amount":27118412988216372}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27383724654869506,"pool_token_amount":27117218174585504}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27375334554835290,"pool_token_amount":27116150773237697}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27359581888419338,"pool_token_amount":27115032726579727}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27358711295251988,"pool_token_amount":27121311958184803}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27351211208748465,"pool_token_amount":27121015855141326}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":27338870474729039,"pool_token_amount":27119788629564554}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27312196713693759,"pool_token_amount":27123796589421875}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27308195656498562,"pool_token_amount":27123399243634706}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27296122024637149,"pool_token_amount":27122137361330633}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27222065431237231,"pool_token_amount":27052130393018720}],[57,{"iota_amount":27213830571377595,"pool_token_amount":27051103597167495}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":27208999209961929,"pool_token_amount":27049880818421886}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27150118059221951,"pool_token_amount":27006053123200235}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":27129018932943452,"pool_token_amount":27003471593888027}],[45,{"iota_amount":27120694150354101,"pool_token_amount":27002552427204267}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27112422316048740,"pool_token_amount":27001685777781687}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27086790993747702,"pool_token_amount":27000356993575653}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27082535860841283,"pool_token_amount":27000260342236597}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":27058841267455243,"pool_token_amount":26998801090726417}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27046323328515804,"pool_token_amount":26999915133869243}],[26,{"iota_amount":20033267984099894,"pool_token_amount":20006437518766712}],[25,{"iota_amount":20028145911136436,"pool_token_amount":20005458321224873}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20017852200211770,"pool_token_amount":20003997637414117}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004781250991001,"pool_token_amount":20000206822415692}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Galaxy Digital":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":137919474941004479,"pool_token_amount":135027862106056252}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":137882923907542015,"pool_token_amount":135026370983865984}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":137788892509831649,"pool_token_amount":135020492605667663}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":137751226956119942,"pool_token_amount":135018850521330787}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":137693148386375584,"pool_token_amount":135032483501683058}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":137504146050218934,"pool_token_amount":135022847841416883}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":137467238483144216,"pool_token_amount":135021587935866408}],[140,{"iota_amount":137448235517354948,"pool_token_amount":135020421751653344}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":137410786930262340,"pool_token_amount":135018654358533198}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":137354647613858667,"pool_token_amount":135016061526230850}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":137335212596626860,"pool_token_amount":135014477388800172}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":137056183745821594,"pool_token_amount":135003008641055967}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":136979490575177590,"pool_token_amount":134997637761992548}],[114,{"iota_amount":136958388064933198,"pool_token_amount":134994392619288367}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":136920959365007845,"pool_token_amount":134992612330300394}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":136884146692894480,"pool_token_amount":134991446043851660}],[109,{"iota_amount":136863485999169873,"pool_token_amount":134990600760585485}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":136820200633017719,"pool_token_amount":134987072595211790}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":136775676808803015,"pool_token_amount":134983808483637807}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":136754571231809844,"pool_token_amount":134983324323798159}],[100,{"iota_amount":136674211747637070,"pool_token_amount":134984964748139850}],[97,{"iota_amount":136626067092875576,"pool_token_amount":134997542544118728}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":136604950179177385,"pool_token_amount":134996699313575835}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":136578605884996768,"pool_token_amount":134990636488708488}],[94,{"iota_amount":136546888094715192,"pool_token_amount":134979268009693212}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":136525902032842776,"pool_token_amount":134978454440713915}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":136505169805124573,"pool_token_amount":134977679560799530}],[90,{"iota_amount":136463756148671222,"pool_token_amount":134976037563092790}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":136438151559776759,"pool_token_amount":134970335009884421}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":136309160237052333,"pool_token_amount":134960035788098974}],[82,{"iota_amount":136271641980070343,"pool_token_amount":134942354667655353}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":136228111640555639,"pool_token_amount":134938924654883215}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":136207635061061585,"pool_token_amount":134938113342811545}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":136144558357631838,"pool_token_amount":134933986954662946}],[75,{"iota_amount":136466109184104423,"pool_token_amount":135272291209185669}],[74,{"iota_amount":136438997268724325,"pool_token_amount":135264984187000428}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":136373377517051551,"pool_token_amount":135261279455711091}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":136811022226621543,"pool_token_amount":135757776596121699}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":136767477459046791,"pool_token_amount":135756276779978815}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":136644549050675177,"pool_token_amount":135753082816031755}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":136559433933295295,"pool_token_amount":135747277285928170}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":135904847494610289,"pool_token_amount":135393883200513826}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":105763339498424840,"pool_token_amount":105478989479366670}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105726237551781905,"pool_token_amount":105476503345668666}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":105688200233411812,"pool_token_amount":105473050298482246}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078923191536673,"pool_token_amount":80005247106203323}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Gaucho":[[167,{"iota_amount":27526361136218989,"pool_token_amount":26994038145237773}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27517339029170399,"pool_token_amount":26994745906659261}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27513730517164046,"pool_token_amount":26994391908174855}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":27494344303301326,"pool_token_amount":26994752246283589}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":27463366649778599,"pool_token_amount":26997029694082003}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27452466620726189,"pool_token_amount":26995904118792013}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":27428108850956138,"pool_token_amount":26997532979638656}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":27418908915533852,"pool_token_amount":26998079793450379}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27404459008791858,"pool_token_amount":26996665167474833}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":27391980471588136,"pool_token_amount":26993985205535229}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27388367710766295,"pool_token_amount":26993628291313997}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27390585658103239,"pool_token_amount":27005428149678431}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27354426969874864,"pool_token_amount":27001813548604032}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27325703491140879,"pool_token_amount":26998155943239433}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27317337374047619,"pool_token_amount":26997331089448439}],[99,{"iota_amount":27301897283427224,"pool_token_amount":26996803081238006}],[98,{"iota_amount":27297777914138532,"pool_token_amount":26996398426784022}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27289390014911352,"pool_token_amount":26995318074925092}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27285202390946649,"pool_token_amount":26994820974167471}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":27257428760427077,"pool_token_amount":26999191486490054}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27253409462385471,"pool_token_amount":26998712432527932}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":27241391121089436,"pool_token_amount":26997285275771218}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27229156997241884,"pool_token_amount":26995837216389126}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27221243054819080,"pool_token_amount":26994976078692214}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27213186924933140,"pool_token_amount":26993969669848666}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27205070341751182,"pool_token_amount":26993000930717957}],[72,{"iota_amount":27202888391779627,"pool_token_amount":26994523785518684}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":27190550479867904,"pool_token_amount":26993444567070368}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27184737948929214,"pool_token_amount":26995150115221609}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":27176068388927063,"pool_token_amount":26994115727572704}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27172067605527914,"pool_token_amount":26993638847947062}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":27168957332397986,"pool_token_amount":26997625122484525}],[61,{"iota_amount":27164955291099788,"pool_token_amount":26997226547782272}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27160953465200052,"pool_token_amount":26996828836091722}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27112653177601147,"pool_token_amount":26992465209852314}],[45,{"iota_amount":27101538586374329,"pool_token_amount":26992452884229542}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":27089592147949644,"pool_token_amount":26991612424871262}],[41,{"iota_amount":27085884776131352,"pool_token_amount":26991606482358613}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":27082597079719365,"pool_token_amount":26992018628228272}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":27063191772577468,"pool_token_amount":26991645259036868}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27055150195916347,"pool_token_amount":26991807663942133}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27041573553594913,"pool_token_amount":26994743348070854}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27036867706521641,"pool_token_amount":26994252914124742}],[24,{"iota_amount":20019242481249717,"pool_token_amount":20002312351963101}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004772935991001,"pool_token_amount":20000571853482870}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000002539676}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000052693}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000044097}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000044097}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000042839}]],"H2O Nodes":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27510777003913803,"pool_token_amount":26995000383438210}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":27494172229173946,"pool_token_amount":26994995816745830}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":27487496189921606,"pool_token_amount":26994995956687129}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27483884809743696,"pool_token_amount":26994727867656870}],[148,{"iota_amount":27467805238473411,"pool_token_amount":26995329276548019}],[146,{"iota_amount":27461305038549391,"pool_token_amount":26995329610323116}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27424571265840938,"pool_token_amount":26994379788946396}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27421331176253903,"pool_token_amount":26994391174175311}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27414466375677658,"pool_token_amount":26994036533760919}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27404704556452605,"pool_token_amount":26994035892552765}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27398206005630459,"pool_token_amount":26994044574357438}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":27394834806572048,"pool_token_amount":26993926326163981}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27391537320103757,"pool_token_amount":26993880153107829}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27375312064434312,"pool_token_amount":26993907931036430}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27372062310401493,"pool_token_amount":26993907961507156}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":27368812611663877,"pool_token_amount":26993907940397229}],[116,{"iota_amount":27362313687465359,"pool_token_amount":26993907048777640}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27359067549313505,"pool_token_amount":26993910060984330}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27349309592114633,"pool_token_amount":26993900156118938}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27335382442987823,"pool_token_amount":26993700830039650}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27331655057309259,"pool_token_amount":26993686318894489}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27324067647729662,"pool_token_amount":26993681034573353}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27320230975845488,"pool_token_amount":26993606097502182}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":27308970076620561,"pool_token_amount":26993592000390155}],[99,{"iota_amount":27301625697339957,"pool_token_amount":26993676401422702}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":27275509136406350,"pool_token_amount":26993589296899374}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":27263350289186476,"pool_token_amount":26995973405572351}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27243418147426284,"pool_token_amount":26994154718801895}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27233191123406411,"pool_token_amount":26994939341432652}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27206714979924658,"pool_token_amount":26993788264066668}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":27175572266624339,"pool_token_amount":26993458712542982}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27157420374076683,"pool_token_amount":26993313158001845}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":27146050475160166,"pool_token_amount":26996329491435200}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27142076228456426,"pool_token_amount":26995958435863162}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27123249456097021,"pool_token_amount":26991957563722292}],[50,{"iota_amount":27120302918282739,"pool_token_amount":26992708230940279}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":27109322672932486,"pool_token_amount":26992830633733852}],[45,{"iota_amount":27101065881785060,"pool_token_amount":26991978870030775}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":27089913931250442,"pool_token_amount":26991929803709525}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27068327488534391,"pool_token_amount":26992772771809520}],[35,{"iota_amount":27063894195705282,"pool_token_amount":26992341903812665}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27050395123396914,"pool_token_amount":26991159369103250}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27038083147476398,"pool_token_amount":26991255765256061}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27034053793249757,"pool_token_amount":26991440755232235}],[27,{"iota_amount":27029515518592186,"pool_token_amount":26991406809668803}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000052693}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000044955}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000449600,"pool_token_amount":20000000000044955}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000449600,"pool_token_amount":20000000000044955}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000441000,"pool_token_amount":20000000000044097}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"HashQuark":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27584339390695727,"pool_token_amount":27045526082924395}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27577122065909678,"pool_token_amount":27044818405872704}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27555295421496316,"pool_token_amount":27042696084489513}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":27529182221904269,"pool_token_amount":27039999786870388}],[148,{"iota_amount":27518070491058708,"pool_token_amount":27038922438198313}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27514359942656420,"pool_token_amount":27038558747744807}],[145,{"iota_amount":27507034356508894,"pool_token_amount":27037838812869941}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27470964197507322,"pool_token_amount":27034342704056893}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27447387540228726,"pool_token_amount":27033551338016299}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":27423100453843110,"pool_token_amount":27032044725413751}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27419489828976745,"pool_token_amount":27031688811342289}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27405045324997703,"pool_token_amount":27030261876194760}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27393635191949598,"pool_token_amount":27031827431230405}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27378388134900034,"pool_token_amount":27030325277194999}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27374262991324440,"pool_token_amount":27029918006762803}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27365838601043554,"pool_token_amount":27029086099288717}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27361659974184341,"pool_token_amount":27028673374479649}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":27353194008729705,"pool_token_amount":27027839695838602}],[97,{"iota_amount":27332353359224401,"pool_token_amount":27025780736528803}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":27311533296119395,"pool_token_amount":27023720623049603}],[91,{"iota_amount":27307480233285638,"pool_token_amount":27023322285442151}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27282259477714264,"pool_token_amount":27019935783286764}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":27270235628391594,"pool_token_amount":27018741682208525}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27262349888093996,"pool_token_amount":27018272633383940}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27258342600759624,"pool_token_amount":27017874600348146}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27254340024918160,"pool_token_amount":27017477873742996}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27241977926897295,"pool_token_amount":27015933695698477}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27233864243715337,"pool_token_amount":27015129005891963}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":27212519069856259,"pool_token_amount":27013008221130627}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27171416736003391,"pool_token_amount":27008842508889411}],[57,{"iota_amount":27167391853389081,"pool_token_amount":27008420959531017}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27159389258663801,"pool_token_amount":27007625349524305}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27155272996969054,"pool_token_amount":27007212444826048}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27141874516661961,"pool_token_amount":27004930201073228}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":27125418188666850,"pool_token_amount":27003285370754058}],[45,{"iota_amount":27117692534004072,"pool_token_amount":27002962599976241}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27113527590475142,"pool_token_amount":27002500279921431}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":27078261796052896,"pool_token_amount":27001076037915242}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27068917001028875,"pool_token_amount":26999938606429077}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27058607333487426,"pool_token_amount":27003030163185747}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27056244904866752,"pool_token_amount":27009824683347126}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025418301,"pool_token_amount":20000000000508352}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000000306536}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000140558}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000485900,"pool_token_amount":20000000000009712}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000438600,"pool_token_amount":20000000000008771}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"HashedPotatoes":[[167,{"iota_amount":130557842427601670,"pool_token_amount":127774977072322661}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":130540599168053117,"pool_token_amount":127774470800426095}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":130490434738237381,"pool_token_amount":127774477951986871}],[161,{"iota_amount":130457540905298790,"pool_token_amount":127774999618288570}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":130241380268773155,"pool_token_amount":127697651789898346}],[148,{"iota_amount":130084818506381742,"pool_token_amount":127628413075113258}],[146,{"iota_amount":130049924409814482,"pool_token_amount":127627782950215028}],[145,{"iota_amount":130033664425228507,"pool_token_amount":127628548764085271}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":129980893530669239,"pool_token_amount":127626897630040787}],[141,{"iota_amount":129963838178414911,"pool_token_amount":127626869610727397}],[138,{"iota_amount":129913260504066092,"pool_token_amount":127627384635473391}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":129863761530074859,"pool_token_amount":127628993204915884}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":129846199034273535,"pool_token_amount":127628475396268885}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[130,{"iota_amount":129778135849353840,"pool_token_amount":127628575523769641}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":129760554579365501,"pool_token_amount":127628056821182031}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":129625587529387654,"pool_token_amount":127528834812488938}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[122,{"iota_amount":129537699835082291,"pool_token_amount":127525673520872115}],[121,{"iota_amount":129520078476024586,"pool_token_amount":127524996363106389}],[120,{"iota_amount":129502526828963194,"pool_token_amount":127524477924083613}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":129485480517095677,"pool_token_amount":127524458028006618}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":129467928478667331,"pool_token_amount":127523939441087435}],[117,{"iota_amount":129450379563205289,"pool_token_amount":127523420878280317}],[116,{"iota_amount":129434085473408630,"pool_token_amount":127524137858532092}],[114,{"iota_amount":129398857148361510,"pool_token_amount":127522972312046502}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[110,{"iota_amount":129333380314058782,"pool_token_amount":127525562034877835}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[100,{"iota_amount":129145095508118739,"pool_token_amount":127531487239712885}],[98,{"iota_amount":129104004817310348,"pool_token_amount":127529313875111511}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":129007618940952807,"pool_token_amount":127529414524941091}],[91,{"iota_amount":128968717638287702,"pool_token_amount":127528600070273964}],[88,{"iota_amount":128904295467414258,"pool_token_amount":127521125372399040}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":128884780022582452,"pool_token_amount":127520549215608296}],[85,{"iota_amount":128845777058247299,"pool_token_amount":127519322331517070}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":128640457961715592,"pool_token_amount":127521366486070054}],[72,{"iota_amount":128600170410012772,"pool_token_amount":127520222556593651}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[68,{"iota_amount":128525720351900896,"pool_token_amount":127525305528901313}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":128253143218349294,"pool_token_amount":127519479426653916}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":128171066650086595,"pool_token_amount":127513335737732617}],[49,{"iota_amount":128151571465152672,"pool_token_amount":127512816628775851}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[42,{"iota_amount":127223818889977427,"pool_token_amount":126721134170399022}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":127103711090611124,"pool_token_amount":126716636049287833}],[35,{"iota_amount":117092034728337755,"pool_token_amount":116754259532480528}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[30,{"iota_amount":116988867212019885,"pool_token_amount":116747758846326601}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":88478735265669778,"pool_token_amount":88359670681293343}],[25,{"iota_amount":88459954555207252,"pool_token_amount":88359014054772290}],[24,{"iota_amount":86676843435024461,"pool_token_amount":86596470812715472}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":83835661161998830,"pool_token_amount":83796871811254358}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Imperator.co":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35721802088453064,"pool_token_amount":35021896243074698}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35717091400296320,"pool_token_amount":35021526771482918}],[161,{"iota_amount":35712485744143645,"pool_token_amount":35021165494148675}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":35688149062808508,"pool_token_amount":35018823217866004}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":35663826454004482,"pool_token_amount":35016675611831847}],[150,{"iota_amount":35659019831911417,"pool_token_amount":35016302640769673}],[149,{"iota_amount":35656152866872329,"pool_token_amount":35017835029267002}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35646024696964571,"pool_token_amount":35016586564201296}],[145,{"iota_amount":35636540118280372,"pool_token_amount":35015885251108976}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35630744136620430,"pool_token_amount":35023252194233938}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":35619844906704336,"pool_token_amount":35025421582077879}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":35599939217262857,"pool_token_amount":35022924850003715}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":35594385128715362,"pool_token_amount":35026091110862680}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":35570560563984412,"pool_token_amount":35024192804028554}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":35565886493955930,"pool_token_amount":35023864624863013}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":35543491740104567,"pool_token_amount":35023173599247169}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35538667578358449,"pool_token_amount":35026968863676840}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35530141956265225,"pool_token_amount":35027115058822499}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35514151099599560,"pool_token_amount":35024447037869223}],[114,{"iota_amount":35509437956957944,"pool_token_amount":35024075185229755}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35480785555379158,"pool_token_amount":35022637799040818}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35458917027415867,"pool_token_amount":35021032739062247}],[101,{"iota_amount":35442489922156353,"pool_token_amount":35019737873706075}],[99,{"iota_amount":35431712349172407,"pool_token_amount":35018885887847740}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35415728606820556,"pool_token_amount":35017792177789475}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":35361399912124527,"pool_token_amount":35012424052801463}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":35340127926374308,"pool_token_amount":35010536647216213}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35323421325482242,"pool_token_amount":35008491026316986}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":35315194798961599,"pool_token_amount":35009868969597405}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35285644961127017,"pool_token_amount":35010173001530498}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":35265071364752478,"pool_token_amount":35010053713520794}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":35242880347469237,"pool_token_amount":35012790769018021}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":35223203032261194,"pool_token_amount":35012746419621431}],[56,{"iota_amount":35212524374377810,"pool_token_amount":35011888946551286}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35204534370774014,"pool_token_amount":35008824705870293}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":35178643396717086,"pool_token_amount":35007481498947437}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35173294798197324,"pool_token_amount":35007042875620268}],[46,{"iota_amount":35165732752791722,"pool_token_amount":35014173058756113}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35094243074800592,"pool_token_amount":35008794028196864}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35087242259963465,"pool_token_amount":35007227025863986}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35076061272097820,"pool_token_amount":35006989626794125}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":25046991626220558,"pool_token_amount":25014580852377278}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25024577933511914,"pool_token_amount":25007293593432911}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000011122}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"InfStones":[[167,{"iota_amount":27585923008343310,"pool_token_amount":27048243974445277}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27582313953676653,"pool_token_amount":27047890103028430}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":27567887968996165,"pool_token_amount":27046482311441912}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27560684888657346,"pool_token_amount":27045784517946125}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27542245610994133,"pool_token_amount":27044067430100644}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27534304908944516,"pool_token_amount":27042826093103557}],[150,{"iota_amount":27523094674363220,"pool_token_amount":27041651826645344}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27497065350079298,"pool_token_amount":27035590897013279}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":27475395863964137,"pool_token_amount":27033459682712452}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27465549815580439,"pool_token_amount":27033375535497738}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":27457588555905088,"pool_token_amount":27031940716713989}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":27450157573019721,"pool_token_amount":27031029367815716}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27439323942776406,"pool_token_amount":27029974981087125}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":27414052700987037,"pool_token_amount":27027498180512796}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27410442076120672,"pool_token_amount":27027142208856486}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27396110133858122,"pool_token_amount":27025826079693872}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":27389145709991175,"pool_token_amount":27025366152839520}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":27378347677208491,"pool_token_amount":27024330081747657}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27374838712886973,"pool_token_amount":27024075099777728}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27366835887606697,"pool_token_amount":27023307246746105}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27362519746889691,"pool_token_amount":27022711310710498}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27354089764623168,"pool_token_amount":27021873744960050}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27345801537389407,"pool_token_amount":27021125988143623}],[99,{"iota_amount":27329272887906381,"pool_token_amount":27019521840625265}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27312699641903439,"pool_token_amount":27017907191080417}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27296219031074870,"pool_token_amount":27016283752228417}],[90,{"iota_amount":27292174250428405,"pool_token_amount":27015884314910346}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":27268350358397648,"pool_token_amount":27013845127480386}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27264375033245508,"pool_token_amount":27013479310998602}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27256718237080685,"pool_token_amount":27013038766739749}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27252478792628987,"pool_token_amount":27012609692832604}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27224408518954837,"pool_token_amount":27021186773553930}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":27142768749228686,"pool_token_amount":27013615985615512}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27138646662868620,"pool_token_amount":27013196781201883}],[48,{"iota_amount":27134534657711255,"pool_token_amount":27012787936288320}],[45,{"iota_amount":27122239457980975,"pool_token_amount":27011600164260913}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27113957196175031,"pool_token_amount":27010722885973152}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":27105758279645454,"pool_token_amount":27009929442176529}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":27101675906840736,"pool_token_amount":27009549590435460}],[39,{"iota_amount":27097561487443432,"pool_token_amount":27009137753217744}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27093446367041789,"pool_token_amount":27008726686933403}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27071668389919846,"pool_token_amount":27006785076817543}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000000507924}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015774701,"pool_token_amount":20000000000315481}],[16,{"iota_amount":20000000007017893,"pool_token_amount":20000000000140348}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000445300,"pool_token_amount":20000000000008902}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Juicy Stake":[[167,{"iota_amount":44298253330197315,"pool_token_amount":43409073870845232}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":44270752143795229,"pool_token_amount":43409073602080747}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":44252955510071905,"pool_token_amount":43407888770903965}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":44241768789992107,"pool_token_amount":43407888849001502}],[156,{"iota_amount":44236182904250937,"pool_token_amount":43407895807574124}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":44224802533338675,"pool_token_amount":43407889087045168}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":44213300949142295,"pool_token_amount":43407672980138513}],[150,{"iota_amount":44201884101697189,"pool_token_amount":43407630894546088}],[148,{"iota_amount":44190688991312816,"pool_token_amount":43407624347750799}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":44168058965715120,"pool_token_amount":43407396581373460}],[143,{"iota_amount":44162462245067219,"pool_token_amount":43407396573714025}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":44112062246122329,"pool_token_amount":43407397411683743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":44083884267620089,"pool_token_amount":43407235128422899}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":44055441498673269,"pool_token_amount":43406802411583027}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":44043711529093867,"pool_token_amount":43406278338827790}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":44004894193714422,"pool_token_amount":43406631291103983}],[114,{"iota_amount":43999289623265375,"pool_token_amount":43406622498300499}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":43932631932569954,"pool_token_amount":43406762093994583}],[102,{"iota_amount":43926177582336617,"pool_token_amount":43406761720731562}],[99,{"iota_amount":43906939435416152,"pool_token_amount":43406740804282871}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":43887972530546628,"pool_token_amount":43406732593018539}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":43852369720234434,"pool_token_amount":43407059386871873}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":43840724774462430,"pool_token_amount":43407071954171689}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":43834804601837643,"pool_token_amount":43407074747603031}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":43805352695436091,"pool_token_amount":43407066845288230}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":43787281212849481,"pool_token_amount":43406725528327826}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":43757343182008108,"pool_token_amount":43406139734873914}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":43696187824423912,"pool_token_amount":43406115243350595}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":43684649441635407,"pool_token_amount":43406311905060368}],[61,{"iota_amount":43679491095902386,"pool_token_amount":43407017432264449}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":43648937363981075,"pool_token_amount":43405812958332984}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":43585672078299269,"pool_token_amount":43407524900324861}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":43579433671385672,"pool_token_amount":43407421419211946}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":43566858008535219,"pool_token_amount":43407218810605913}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":43534937506792891,"pool_token_amount":43406500458933035}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27055012063530254,"pool_token_amount":26995269015724549}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27046582618768200,"pool_token_amount":26995044040031765}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":27042229197357008,"pool_token_amount":26994895519663056}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":20029513993995886,"pool_token_amount":20004501126099622}],[25,{"iota_amount":20024962137832010,"pool_token_amount":20003753756616914}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20011406311485771,"pool_token_amount":20002620042905490}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015785201,"pool_token_amount":20000000000315691}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000140558}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000455800,"pool_token_amount":20000000000009112}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000442900,"pool_token_amount":20000000000008856}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"KiligLab":[[167,{"iota_amount":45891858260305156,"pool_token_amount":44978998755003397}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":45889008902946022,"pool_token_amount":44986995711280461}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":45882693580435177,"pool_token_amount":44986200130459935}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":45864360837934499,"pool_token_amount":44984405153987777}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":45858246003087478,"pool_token_amount":44983805402087669}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":45845615161714123,"pool_token_amount":44982566325314073}],[157,{"iota_amount":45839320076814572,"pool_token_amount":44981966382760110}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":45826682570037257,"pool_token_amount":44980719124777067}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[149,{"iota_amount":45798530157417132,"pool_token_amount":44986565295468654}],[145,{"iota_amount":45773795853794426,"pool_token_amount":44984174222095251}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":45748943140640406,"pool_token_amount":44981754404234857}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":45717763158014418,"pool_token_amount":44978634846467979}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":45720848517158409,"pool_token_amount":44987180523973928}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":45671049965011799,"pool_token_amount":44982279566331907}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":45646199912545629,"pool_token_amount":44979860881987182}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":45631874808670059,"pool_token_amount":44987812544853877}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":45625656371933204,"pool_token_amount":44987199477708071}],[117,{"iota_amount":45619439041636130,"pool_token_amount":44986586444481092}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":45594544327905006,"pool_token_amount":44984108876259851}],[112,{"iota_amount":45588325310813907,"pool_token_amount":44983494412449917}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":45575885986085031,"pool_token_amount":44982266020408023}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":45562046261705942,"pool_token_amount":44980887546800181}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":45533597725814349,"pool_token_amount":44978053506040356}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":45528165663263604,"pool_token_amount":44985478762630142}],[101,{"iota_amount":45521031911493030,"pool_token_amount":44984774780435579}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":45446948720988939,"pool_token_amount":44973887882232948}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":45415628578274036,"pool_token_amount":44980048098618786}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":45394926865699806,"pool_token_amount":44977997501706888}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":45360105208176796,"pool_token_amount":44974448001842490}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":45329264438044661,"pool_token_amount":44981460059082168}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":45307473711381475,"pool_token_amount":44979295608014878}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":45292804690352264,"pool_token_amount":44977839225093810}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":45254372959861889,"pool_token_amount":44983188761052699}],[58,{"iota_amount":45247472390515630,"pool_token_amount":44982493893171214}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":45206476910464549,"pool_token_amount":44978433099240215}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":45179238850656564,"pool_token_amount":44975714357443124}],[45,{"iota_amount":45158802354818683,"pool_token_amount":44973889411748608}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":45149010984015784,"pool_token_amount":44982770234936920}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":45106393278005786,"pool_token_amount":44978520876021449}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":45083649385109576,"pool_token_amount":44976292129358451}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":45068258196515068,"pool_token_amount":44974723340602668}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":45057522654885279,"pool_token_amount":44977993270604737}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":45049617420409517,"pool_token_amount":44977214034394033}],[26,{"iota_amount":25036109499423111,"pool_token_amount":25004589769410312}],[25,{"iota_amount":25030883517696156,"pool_token_amount":25004068740176551}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000011122}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}]],"Kiln":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":68092362944260716,"pool_token_amount":66744507887485992}],[165,{"iota_amount":68083342240313707,"pool_token_amount":66743623672785197}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":68084749784775352,"pool_token_amount":66769952661699251}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":68066716831307359,"pool_token_amount":66768184084167207}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":38061436208126394,"pool_token_amount":37339927039920280}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":38003974845759561,"pool_token_amount":37334090712704391}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":37987374400357540,"pool_token_amount":37331533162838468}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":37982154499274411,"pool_token_amount":37331020184131221}],[143,{"iota_amount":37976938973782594,"pool_token_amount":37330507572172712}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":37971724205310598,"pool_token_amount":37329994971295040}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":37943586498833499,"pool_token_amount":37334131722175332}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":37933784089975103,"pool_token_amount":37333641186278615}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":29925788356288799,"pool_token_amount":29459452116764855}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":39943721330147832,"pool_token_amount":39337301790329134}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":39938299839843535,"pool_token_amount":39336767168247251}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":39900471704410535,"pool_token_amount":39333125846965452}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":39895166483541688,"pool_token_amount":39332701375389752}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":39867165218258917,"pool_token_amount":39329118888224818}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":39852665007213907,"pool_token_amount":39334052474409869}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":39827972442425321,"pool_token_amount":39331213189292993}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":39821684814769959,"pool_token_amount":39330591379943740}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":39815417882011095,"pool_token_amount":39329973304731433}],[103,{"iota_amount":39827278127086468,"pool_token_amount":39347278476136704}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":38980281642335700,"pool_token_amount":38558897742072399}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":38956275670406692,"pool_token_amount":38556426444199514}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":34962444923840285,"pool_token_amount":34608290724224941}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":34944301701941623,"pool_token_amount":34613755770860622}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":36570386116772559,"pool_token_amount":36275224840498945}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":36564717881061061,"pool_token_amount":36274662591780693}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":36552592981990906,"pool_token_amount":36273152491334687}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":36529003260622861,"pool_token_amount":36270789338347867}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":36523112481209079,"pool_token_amount":36270203530802035}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":36602146132623738,"pool_token_amount":36368909038540045}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":36593111333518516,"pool_token_amount":36374842460118566}],[56,{"iota_amount":36568351190401405,"pool_token_amount":36365144176084912}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35524197994233215,"pool_token_amount":35364883931745005}],[47,{"iota_amount":35518863676874555,"pool_token_amount":35364352892267574}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":35988430580944185,"pool_token_amount":35861341657942680}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":30965723835787095,"pool_token_amount":30877930252642800}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":30948966153639107,"pool_token_amount":30875186172977120}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":30943708820539110,"pool_token_amount":30874640702364577}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":29282809216264338,"pool_token_amount":29230727372647571}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":21760237236095525,"pool_token_amount":21736531128789764}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000010533}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}],[0,{"iota_amount":0,"pool_token_amount":0}]],"KingSuper":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35700011785373341,"pool_token_amount":35001990637668625}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35679918180059372,"pool_token_amount":34999008837479320}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35670295217276519,"pool_token_amount":34998159245806681}],[156,{"iota_amount":35665484099536562,"pool_token_amount":34997734403865260}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":35660659735710728,"pool_token_amount":34997296731403765}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35614539377593803,"pool_token_amount":34999149959295867}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":35590666546683225,"pool_token_amount":34997038011982875}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":35585947773233470,"pool_token_amount":34996620405312062}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":35576364884927390,"pool_token_amount":34995646028481313}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":35552579811823822,"pool_token_amount":34993542706649068}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":35584320235156034,"pool_token_amount":35050347825019472}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":35579495989645478,"pool_token_amount":35049912986996972}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35574680092477499,"pool_token_amount":35049486007213264}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":35565114914492874,"pool_token_amount":35048698249304797}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35560403068840825,"pool_token_amount":35048282157148367}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35555688936409735,"pool_token_amount":35047863994975958}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35550974960074405,"pool_token_amount":35047445796210260}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35497059120626255,"pool_token_amount":35038436839726964}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":35486220740709595,"pool_token_amount":35037478415435652}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35480432623382144,"pool_token_amount":35036784369236054}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":35469279155843067,"pool_token_amount":35035796662704747}],[101,{"iota_amount":35458430472756772,"pool_token_amount":35034828551742043}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35417951734650529,"pool_token_amount":35034287393707866}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35412621894888169,"pool_token_amount":35033845608239350}],[91,{"iota_amount":35407326441305730,"pool_token_amount":35033426502517792}],[90,{"iota_amount":35402039449138008,"pool_token_amount":35033003459906483}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":35365821390969013,"pool_token_amount":35026413673105283}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":35321254869558539,"pool_token_amount":35021299167035107}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":35316418665245273,"pool_token_amount":35021370483027896}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":35300078515380193,"pool_token_amount":35020072182926538}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35294515412572888,"pool_token_amount":35019625188680572}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":35289552361141034,"pool_token_amount":35019775431725579}],[69,{"iota_amount":35283991012969136,"pool_token_amount":35019332099095075}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":35255885092625066,"pool_token_amount":35011730396593624}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35250550714761084,"pool_token_amount":35011306601698699}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35244965971836230,"pool_token_amount":35010634415534648}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":35207736377920710,"pool_token_amount":35007778404207118}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35191748022493328,"pool_token_amount":35006522044644930}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":35158698650613196,"pool_token_amount":35002938460320905}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35129542246156355,"pool_token_amount":34998340191651267}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":35118630306539844,"pool_token_amount":34997350812738874}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35096602900833656,"pool_token_amount":34995506340741075}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35061377465698240,"pool_token_amount":34992818882254452}],[29,{"iota_amount":35055129975064124,"pool_token_amount":34992098773840095}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":25005936738205152,"pool_token_amount":25000164266835462}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Laine":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27849627234575506,"pool_token_amount":27329538102523327}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27846018479414373,"pool_token_amount":27329183965957895}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27838600365871978,"pool_token_amount":27328455878549114}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27827474141879584,"pool_token_amount":27327363512891423}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27819764977139917,"pool_token_amount":27326349391322045}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27800031609628709,"pool_token_amount":27326642767473194}],[145,{"iota_amount":27792605640234784,"pool_token_amount":27325912770711633}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27782582092804442,"pool_token_amount":27325911389800786}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27786679166701418,"pool_token_amount":27333227290508963}],[140,{"iota_amount":27782967570647102,"pool_token_amount":27332862187388367}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27771873656344363,"pool_token_amount":27331815289194064}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":27768157973877504,"pool_token_amount":27331449608016211}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27753308840273646,"pool_token_amount":27329992274132020}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27723625880896407,"pool_token_amount":27327096734806734}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27715700671639335,"pool_token_amount":27325871881175947}],[120,{"iota_amount":27709188362207194,"pool_token_amount":27326038155469354}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":33514374482542776,"pool_token_amount":33055798842098896}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":33503567843795481,"pool_token_amount":33057158466890397}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":33499244436343006,"pool_token_amount":33056900007956366}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":33486183167549064,"pool_token_amount":33056035053656379}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":33482623431897005,"pool_token_amount":33056530731034440}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":33478084667698088,"pool_token_amount":33056061305009295}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":33470482686835669,"pool_token_amount":33057473013794943}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":33451584501243393,"pool_token_amount":33057144045139436}],[99,{"iota_amount":33428848021701014,"pool_token_amount":33057746087376733}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":33405469068265209,"pool_token_amount":33056973769373269}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":33400333657810561,"pool_token_amount":33056316925992262}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":33392131873000627,"pool_token_amount":33056845120418841}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":33381422421684720,"pool_token_amount":33059158412207548}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":33376486684742923,"pool_token_amount":33058571841329799}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":33367247814252812,"pool_token_amount":33058001791136097}],[84,{"iota_amount":33363533407801976,"pool_token_amount":33058591532147315}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":33351142269838022,"pool_token_amount":33059221162010250}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":33323845540249518,"pool_token_amount":33057967309149189}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":33316077782602017,"pool_token_amount":33058994288667370}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":33276925506416017,"pool_token_amount":33060910149139874}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":33244618925582827,"pool_token_amount":33059033057145344}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":27111810280705155,"pool_token_amount":26999998757379517}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27099940107438272,"pool_token_amount":26998988072044059}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":27089007273884930,"pool_token_amount":26998912553792797}],[39,{"iota_amount":27085387548947100,"pool_token_amount":26998911826311862}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27082290207787903,"pool_token_amount":26999433376534695}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":27077930796406896,"pool_token_amount":26998797913434555}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27041066771050932,"pool_token_amount":26997876361028829}],[26,{"iota_amount":20034545124314116,"pool_token_amount":20009321562600132}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000000507924}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015774701,"pool_token_amount":20000000000315481}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000445300,"pool_token_amount":20000000000008902}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Latitude.sh":[[167,{"iota_amount":26509070831423817,"pool_token_amount":25989689838865610}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":26505662279770129,"pool_token_amount":25989355661548818}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":26498847955531754,"pool_token_amount":25988689262208225}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":26495359916392142,"pool_token_amount":25988276559299335}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":26491952184426506,"pool_token_amount":25987942307671872}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":26485135144942421,"pool_token_amount":25987269481517081}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":26484434320982063,"pool_token_amount":25989680720990836}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":26480755990558421,"pool_token_amount":25989169617217715}],[156,{"iota_amount":26473739470255868,"pool_token_amount":25988480948779087}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":26447982545543300,"pool_token_amount":25991099625080355}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":26427030850173270,"pool_token_amount":25989143865833310}],[140,{"iota_amount":26423519880903216,"pool_token_amount":25988798585981133}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":26420008335090361,"pool_token_amount":25988453208116423}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":26407020892273870,"pool_token_amount":25991234905142344}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":26392966336543077,"pool_token_amount":25989851328241447}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":26389450082018461,"pool_token_amount":25989505072783709}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":26361250419539814,"pool_token_amount":25992867373795923}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":26359866837697053,"pool_token_amount":25994618594609530}],[117,{"iota_amount":91735889242077333,"pool_token_amount":39881683429017994}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":26349970698786360,"pool_token_amount":25997321055826039}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":26331146925739238,"pool_token_amount":25998148715490680}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":26327244762873680,"pool_token_amount":25997763433703630}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[101,{"iota_amount":26309800324036249,"pool_token_amount":26001646086682463}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":26288035129314738,"pool_token_amount":26000960021254616}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":26279316363398754,"pool_token_amount":26002667360610815}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":26271460763759915,"pool_token_amount":26005176798501219}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":26267533324510600,"pool_token_amount":26004710282326290}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":26250380390803722,"pool_token_amount":26004760392810069}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":26251855854719124,"pool_token_amount":26013016210616327}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":26244427986293075,"pool_token_amount":26012546289351818}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":26231229252176981,"pool_token_amount":26006252780921124}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":26197127018320811,"pool_token_amount":26011225663451224}],[64,{"iota_amount":26189206787522249,"pool_token_amount":26010352986292317}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":26185317877081008,"pool_token_amount":26009890383662064}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":26166177079244200,"pool_token_amount":26011279808720983}],[56,{"iota_amount":26162291889630366,"pool_token_amount":26010820742008980}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":26147160159787446,"pool_token_amount":26009390766892407}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":26141174039987063,"pool_token_amount":26010246347065036}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":26137276228565123,"pool_token_amount":26009851354192931}],[48,{"iota_amount":26133437216266681,"pool_token_amount":26009515166476164}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":26132839292851846,"pool_token_amount":26029938211449149}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":26081111534099511,"pool_token_amount":26019382325951462}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":26072047980030809,"pool_token_amount":26018228276678392}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":26039577625617673,"pool_token_amount":25994222959179611}],[26,{"iota_amount":50072342562650958,"pool_token_amount":50007853545577582}],[25,{"iota_amount":50067275141967916,"pool_token_amount":50012290668024540}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":30038474872136477,"pool_token_amount":30017992831062200}],[22,{"iota_amount":30030681280478123,"pool_token_amount":30016716320129205}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":30009102717457676,"pool_token_amount":30002131759037633}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":30000000015600000,"pool_token_amount":30000000000311998}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":30000000000708500,"pool_token_amount":30000000000014169}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Luganodes":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":96329527998020117,"pool_token_amount":41644204951793117}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":56165165021692366,"pool_token_amount":24292548120612612}],[157,{"iota_amount":56133766379699994,"pool_token_amount":24281972251683936}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":56164461678878119,"pool_token_amount":24307275222852175}],[152,{"iota_amount":56087476777549264,"pool_token_amount":24276965327300506}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[146,{"iota_amount":61028024757043826,"pool_token_amount":26435261896804474}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":60948493143585976,"pool_token_amount":26416896265984412}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":91751962059697911,"pool_token_amount":39883805121777235}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":91065346618394553,"pool_token_amount":39599820736424146}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":90853781868271072,"pool_token_amount":39531943192078969}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[102,{"iota_amount":90550852084750085,"pool_token_amount":39444175030853695}],[101,{"iota_amount":90533676868699085,"pool_token_amount":39442243526737071}],[100,{"iota_amount":72314789716618414,"pool_token_amount":31509342874047423}],[99,{"iota_amount":72286345940688156,"pool_token_amount":31501355614297751}],[98,{"iota_amount":71544830309771065,"pool_token_amount":31182574757908908}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":71865033943422279,"pool_token_amount":31335208017305475}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":57225361915554973,"pool_token_amount":24962238505752810}],[91,{"iota_amount":57198594009202988,"pool_token_amount":24953968704899441}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":56134737346669942,"pool_token_amount":24509909200651398}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":56078491158587159,"pool_token_amount":24492000195313410}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":55903534227070337,"pool_token_amount":24435659206860652}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":54994200746248848,"pool_token_amount":24068706805022661}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":51750233583129534,"pool_token_amount":22665000810403999}],[62,{"iota_amount":51827902612488554,"pool_token_amount":22702134927584654}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":51704737391863522,"pool_token_amount":22657467429128359}],[58,{"iota_amount":51641004987674724,"pool_token_amount":22632610654026878}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":51701912027185925,"pool_token_amount":22671719669662475}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":50911749863394918,"pool_token_amount":22340389803748236}],[48,{"iota_amount":50877824927525009,"pool_token_amount":22328576079481569}],[47,{"iota_amount":50870138248218154,"pool_token_amount":22328275305306473}],[46,{"iota_amount":50862143481529370,"pool_token_amount":22327839403634026}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":50743565089263543,"pool_token_amount":22294347438376725}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":50711252482838312,"pool_token_amount":22293532425396754}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":30139769709059235,"pool_token_amount":13267207670651649}],[27,{"iota_amount":30127673471947111,"pool_token_amount":13264086030984455}],[26,{"iota_amount":80113503978686921,"pool_token_amount":80012028484843096}],[25,{"iota_amount":80095591658132118,"pool_token_amount":80009433428161240}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80058393469495627,"pool_token_amount":80005382967023720}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":80000000063865408,"pool_token_amount":80000000001277295}],[18,{"iota_amount":80000000062001508,"pool_token_amount":80000000001240018}],[17,{"iota_amount":80000000049908508,"pool_token_amount":80000000000998159}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"MIDL.dev":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":26514232620390599,"pool_token_amount":25996809920720965}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":26480352143627837,"pool_token_amount":25994120017629535}],[154,{"iota_amount":26477192639999892,"pool_token_amount":25994120073590468}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":26464579199632539,"pool_token_amount":25994144680646862}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":26449123513780896,"pool_token_amount":25994489649935088}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":26436826410566017,"pool_token_amount":25994833726627147}],[140,{"iota_amount":26433316443456150,"pool_token_amount":25994491210803470}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":26423823723192198,"pool_token_amount":25994491614978846}],[136,{"iota_amount":26420308888389368,"pool_token_amount":25994147570631742}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":26391766916318452,"pool_token_amount":25978515302287705}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":26385788139283380,"pool_token_amount":25978859912086283}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":26374016091909378,"pool_token_amount":25976619050037459}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":26370504060091888,"pool_token_amount":25976274867807975}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":26354662648784385,"pool_token_amount":25976245401412092}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":26352200252059464,"pool_token_amount":25976934148415455}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":26342018745661308,"pool_token_amount":25976245498705601}],[116,{"iota_amount":26338909714122390,"pool_token_amount":25976296228961696}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":26318375970249814,"pool_token_amount":25978216293027503}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":26296772473658692,"pool_token_amount":25978241938263774}],[102,{"iota_amount":26294322773535058,"pool_token_amount":25979423329565457}],[100,{"iota_amount":26286280910946865,"pool_token_amount":25978633580178512}],[99,{"iota_amount":26282270237614104,"pool_token_amount":25978239186527028}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":26268324026041109,"pool_token_amount":25978623898393372}],[94,{"iota_amount":26264361519067700,"pool_token_amount":25978233976142718}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":26253757508136959,"pool_token_amount":25981804209575796}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":26232198711789899,"pool_token_amount":25981421294997121}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":26230262517415663,"pool_token_amount":25982978146115750}],[82,{"iota_amount":26226366946939410,"pool_token_amount":25982594190959446}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":26218463912443682,"pool_token_amount":25981814202924227}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":26193472412256981,"pool_token_amount":25981454299808908}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":26189064620869205,"pool_token_amount":25984428848146025}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":26175155863343554,"pool_token_amount":25981653581630382}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":26164728530927334,"pool_token_amount":25978653634440603}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":26153771831154259,"pool_token_amount":25978407049933342}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":26139711324806961,"pool_token_amount":25978358605054394}],[57,{"iota_amount":26132695845126980,"pool_token_amount":25978348807157569}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":26119021156186849,"pool_token_amount":25978684953983421}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":26104862152283013,"pool_token_amount":25982024978345426}],[45,{"iota_amount":26092693289041643,"pool_token_amount":25980371592420231}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":26065279909004945,"pool_token_amount":25977990554869562}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":26058014445576270,"pool_token_amount":25978053553023385}],[35,{"iota_amount":26054221044565932,"pool_token_amount":25978063455607839}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":26036568438339148,"pool_token_amount":25976039682707869}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":26023895321856219,"pool_token_amount":25975288338923823}],[27,{"iota_amount":26020115879173464,"pool_token_amount":25975812086636136}],[26,{"iota_amount":50048539506516356,"pool_token_amount":49986060172559477}],[24,{"iota_amount":50026808049006233,"pool_token_amount":49983749030288053}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":30007112717457676,"pool_token_amount":30000711120006228}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":30000000015600000,"pool_token_amount":30000000001559998}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":30000000000708500,"pool_token_amount":30000000000070849}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Moonlet":[[167,{"iota_amount":27619444183493069,"pool_token_amount":27086509728333933}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":27612226847010355,"pool_token_amount":27085801878635158}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27604657242034010,"pool_token_amount":27084748502772909}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27593835873508812,"pool_token_amount":27083686621202142}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27589923566390251,"pool_token_amount":27083123300816787}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":27578797295695347,"pool_token_amount":27082030978343047}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":27571379415098638,"pool_token_amount":27081302506906699}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":27530890444537155,"pool_token_amount":27077615469942829}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27523468656319991,"pool_token_amount":27076885465325409}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27498025288383735,"pool_token_amount":27074250321676021}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27490697671896365,"pool_token_amount":27073528808420494}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27472564592397012,"pool_token_amount":27071780922237812}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27461728271751977,"pool_token_amount":27070712971063480}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":27439457893087746,"pool_token_amount":27067982773876777}],[116,{"iota_amount":27432300393206127,"pool_token_amount":27067332152359624}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":27424883133252288,"pool_token_amount":27066603387872280}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27416356748813961,"pool_token_amount":27064780202568639}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":27412746306184240,"pool_token_amount":27064423787816616}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27407641721883532,"pool_token_amount":27062593391075865}],[109,{"iota_amount":27403627487306777,"pool_token_amount":27062197020865944}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27395281793973215,"pool_token_amount":27061188841104119}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":27391049501445544,"pool_token_amount":27060771666576177}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27386741992993145,"pool_token_amount":27060346104876292}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[99,{"iota_amount":27361537031571394,"pool_token_amount":27057917390757922}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27311791118763073,"pool_token_amount":27051994475292501}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27302248434480744,"pool_token_amount":27049563007197822}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27295333219105092,"pool_token_amount":27049698606252653}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27258219026628049,"pool_token_amount":27023588560871286}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":27234553753979272,"pool_token_amount":27021078015569396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27221979822183509,"pool_token_amount":27019567671006230}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27217652893673630,"pool_token_amount":27018963208054331}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27200097551506005,"pool_token_amount":27016682044564832}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27191172600751597,"pool_token_amount":27015102441961639}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27186532843556400,"pool_token_amount":27013990859797750}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27155205566796152,"pool_token_amount":27010850041218327}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27151095306275383,"pool_token_amount":27010361184951979}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27125637330146448,"pool_token_amount":27006634733075128}],[46,{"iota_amount":27117195965593112,"pool_token_amount":27005435611450736}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27104630979988421,"pool_token_amount":27003732772049434}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":27086552187395557,"pool_token_amount":27000142199815281}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27073946992024168,"pool_token_amount":26998702580517597}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":27051219906579858,"pool_token_amount":26996397813319176}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27041913523291543,"pool_token_amount":26995399821660808}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20009796366205800,"pool_token_amount":20001104332934567}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025407401,"pool_token_amount":20000000000508134}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000550400,"pool_token_amount":20000000000011000}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000455800,"pool_token_amount":20000000000009112}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"MoveFuns DAO":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":27518268768068142,"pool_token_amount":26999617710408116}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":27508714562254921,"pool_token_amount":26999590822546842}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27499515582435558,"pool_token_amount":26999996189831822}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27488128364749654,"pool_token_amount":27001633907757788}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27481923380677570,"pool_token_amount":27001951586934433}],[151,{"iota_amount":27475349532499500,"pool_token_amount":27001906918423424}],[150,{"iota_amount":27473093934582291,"pool_token_amount":27002898046732300}],[148,{"iota_amount":27466573625787492,"pool_token_amount":27002906237500766}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":27438028479567003,"pool_token_amount":27002965325572620}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":27427096358601922,"pool_token_amount":27001600280075282}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27389845058292017,"pool_token_amount":27002496764326443}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27401456226524207,"pool_token_amount":27039011550775723}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27392193163799983,"pool_token_amount":27039276040229354}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27375608638235519,"pool_token_amount":27039288921867017}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27357231767264279,"pool_token_amount":27035925597068664}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27354515342494757,"pool_token_amount":27036967574990327}],[101,{"iota_amount":27345978031137191,"pool_token_amount":27036123689044316}],[100,{"iota_amount":27341534416050110,"pool_token_amount":27035507293047596}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27326417031108622,"pool_token_amount":27035112950987141}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27313456342411246,"pool_token_amount":27033220647859966}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":27309887580971637,"pool_token_amount":27033229571355779}],[90,{"iota_amount":27300350479957154,"pool_token_amount":27030846322341405}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27288587431510602,"pool_token_amount":27029760879299949}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":27256103863125643,"pool_token_amount":27015077405815932}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27233281772286790,"pool_token_amount":27013607260362906}],[75,{"iota_amount":27229279635149302,"pool_token_amount":27013130004938607}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27208500399034328,"pool_token_amount":27010660911122942}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":27204684202013482,"pool_token_amount":27010660724992396}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":27187606723060702,"pool_token_amount":27008852546491751}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":27122688268592902,"pool_token_amount":26997303485773077}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27115450618710864,"pool_token_amount":26997303590982665}],[47,{"iota_amount":27111832195382323,"pool_token_amount":26997303678402433}],[46,{"iota_amount":27108215755461009,"pool_token_amount":26997305901399157}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27108381879292568,"pool_token_amount":27004679539831335}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27075202633409557,"pool_token_amount":27000684421622889}],[35,{"iota_amount":27070854956120513,"pool_token_amount":27000250258047668}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":27042883153583434,"pool_token_amount":26996459699710037}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":20027798726725227,"pool_token_amount":20003241077149585}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20014499841797003,"pool_token_amount":20001593259539134}],[22,{"iota_amount":20009481366205800,"pool_token_amount":20000789467092587}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004670736001501,"pool_token_amount":20000096332687010}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":20000000012338901,"pool_token_amount":20000000000246767}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000140558}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000442900,"pool_token_amount":20000000000008856}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000438600,"pool_token_amount":20000000000008771}]],"IOTA Foundation-1":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":163441637694686424,"pool_token_amount":159914291668660775}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":163410170306520965,"pool_token_amount":159904264921051253}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":164141481996889669,"pool_token_amount":160724143856099529}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":163983153492818341,"pool_token_amount":160719356462042189}],[150,{"iota_amount":163912427548567797,"pool_token_amount":160714471399808156}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[148,{"iota_amount":163866807778047169,"pool_token_amount":160712610831279196}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[146,{"iota_amount":164929923243860802,"pool_token_amount":161798271815226197}],[145,{"iota_amount":164901778494163109,"pool_token_amount":161792090699449538}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":164673983426353488,"pool_token_amount":161632834139475884}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":169354902783913294,"pool_token_amount":166360125375880825}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":169302942652745502,"pool_token_amount":166331119610448187}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":169094848567256891,"pool_token_amount":166148711511411574}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":169545144984646063,"pool_token_amount":166635498787384885}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":169246559494164668,"pool_token_amount":166430302793148498}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":178402948011520949,"pool_token_amount":175482307768133892}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":178389415300718393,"pool_token_amount":175492209556221921}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":178354432811163014,"pool_token_amount":175504230367379829}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":178334228710128626,"pool_token_amount":175530803600049249}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":173082460279549347,"pool_token_amount":170453069607399956}],[116,{"iota_amount":173056613410042654,"pool_token_amount":170450264272264294}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":173027868260943970,"pool_token_amount":170444603421029452}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":173392282829452162,"pool_token_amount":170871876050064016}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[98,{"iota_amount":187771620682393874,"pool_token_amount":185433113602606250}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":187588973788062152,"pool_token_amount":185392738130168630}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":187197078177877907,"pool_token_amount":185032994348771218}],[91,{"iota_amount":192196546811316816,"pool_token_amount":190003701222146148}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":202030095830817499,"pool_token_amount":199845089498626912}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":202004212759229481,"pool_token_amount":199849169816608936}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":201967921440062492,"pool_token_amount":199842807595652337}],[84,{"iota_amount":201914846972840740,"pool_token_amount":199819757130272081}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":201873981914708426,"pool_token_amount":199808892251715119}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":235800837567320740,"pool_token_amount":233611750365407312}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":237676123514431719,"pool_token_amount":235719612975419901}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":297161394210778727,"pool_token_amount":295133607223623561}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":287258659250032597,"pool_token_amount":285425306378627458}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":281210813905946301,"pool_token_amount":279749936124865325}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":285733287603883689,"pool_token_amount":284378754541901170}],[45,{"iota_amount":285646987364760834,"pool_token_amount":284377850517587650}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":285495001036961726,"pool_token_amount":284311543179653005}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":282132384042115288,"pool_token_amount":281090364834692140}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":278215092903384668,"pool_token_amount":277406161611102295}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":214170578353193153,"pool_token_amount":213583380013958676}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":214098463341352950,"pool_token_amount":213582588184990999}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":212374814522779206,"pool_token_amount":212006446995715987}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":167545672555838728,"pool_token_amount":167428590588548431}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":160834576781276838,"pool_token_amount":160797255768874326}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":150000000093514591,"pool_token_amount":150000000001870281}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"IOTA Foundation-2":[[167,{"iota_amount":235295269344792213,"pool_token_amount":230211799601628356}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":235345963753313416,"pool_token_amount":230350805875585554}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":234539352823554067,"pool_token_amount":229864140658159581}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":234504216001323691,"pool_token_amount":229921869429502923}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":234081310004737504,"pool_token_amount":229903098968029510}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":234030175534512311,"pool_token_amount":229913790011766932}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":233976658966869444,"pool_token_amount":229891648360753048}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":233662800007398175,"pool_token_amount":229765790727899017}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":233072043605134557,"pool_token_amount":229245661128241453}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":233015355134655981,"pool_token_amount":229220178161876123}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":232992180849146309,"pool_token_amount":229227655656707688}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":232954271052359226,"pool_token_amount":229250924780744849}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":232709313102081588,"pool_token_amount":229252673157036902}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":232468577896923941,"pool_token_amount":229106713943180969}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":232335927127585332,"pool_token_amount":229104450488548038}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":232209069867521115,"pool_token_amount":229048344240681035}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":239921442285803733,"pool_token_amount":236802885789585849}],[101,{"iota_amount":239890940773046850,"pool_token_amount":236808957773467747}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":287883155287886818,"pool_token_amount":284621886837909687}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":287758648799390383,"pool_token_amount":284583152162775706}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":287716186189924424,"pool_token_amount":284583355320982318}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":287539145051501336,"pool_token_amount":284534569784782025}],[84,{"iota_amount":287466557291069394,"pool_token_amount":284504618940344444}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":284408438314731825,"pool_token_amount":281602589938178045}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":284364856189137730,"pool_token_amount":281602421558179693}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":284322904345084575,"pool_token_amount":281602349684947498}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":285520804788520990,"pool_token_amount":283216310398421781}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":285381403666917506,"pool_token_amount":283211024296396057}],[65,{"iota_amount":285399198463993527,"pool_token_amount":283273117985019265}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":349549100176942886,"pool_token_amount":347161272308717773}],[60,{"iota_amount":345616340111990250,"pool_token_amount":343306013011173866}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":345733180377014204,"pool_token_amount":343472732447453610}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":342307698245778626,"pool_token_amount":340321690461096847}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":346938410364761503,"pool_token_amount":345183316274927609}],[48,{"iota_amount":345043245119861702,"pool_token_amount":343350648477957146}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":279877599324715089,"pool_token_amount":278839536686300588}],[39,{"iota_amount":279830095829099375,"pool_token_amount":278834640957440291}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":251631468245564555,"pool_token_amount":250852300841119746}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":231274834478189325,"pool_token_amount":230672725365119502}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":230720770035458853,"pool_token_amount":230158419225046727}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":182209990407556936,"pool_token_amount":181857432728907603}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":210088091267080309,"pool_token_amount":209762013985346442}],[26,{"iota_amount":179996518744232507,"pool_token_amount":179752613704658111}],[25,{"iota_amount":174813370641117737,"pool_token_amount":174612636113053916}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":158929203575013686,"pool_token_amount":158892390962988946}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":150000000093514591,"pool_token_amount":150000000001870281}],[16,{"iota_amount":150000000053253526,"pool_token_amount":150000000001065061}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Nelrann":[[167,{"iota_amount":137809475740112083,"pool_token_amount":134902865500725574}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":137755474118990725,"pool_token_amount":134901438645260737}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":137682669617442116,"pool_token_amount":134898535725769531}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":137586271661507734,"pool_token_amount":134927515975351668}],[151,{"iota_amount":137550185366324705,"pool_token_amount":134927425420659788}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":137442580054316943,"pool_token_amount":134927369125372005}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":137424393464003589,"pool_token_amount":134927017159909143}],[143,{"iota_amount":137407083453186081,"pool_token_amount":134927511190178911}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":137389273169165757,"pool_token_amount":134927511436159513}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":137372091630130703,"pool_token_amount":134928132891352699}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":137303013402676284,"pool_token_amount":134930325198012728}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":137139393425748967,"pool_token_amount":134927241114890950}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":137103765210076558,"pool_token_amount":134927261866180950}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":137068106009936109,"pool_token_amount":134927241319123646}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[120,{"iota_amount":136996504638696571,"pool_token_amount":134926917029330686}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":91735889242077333,"pool_token_amount":39881683429017994}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":136851084712296860,"pool_token_amount":134924026874397138}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":136788319290461834,"pool_token_amount":134897273547460118}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[102,{"iota_amount":136634232195334493,"pool_token_amount":134905515298038361}],[98,{"iota_amount":136561331482629768,"pool_token_amount":134914015779595844}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":136509207044537178,"pool_token_amount":134902479207220197}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":136428753350821144,"pool_token_amount":134902454206345491}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":136369595062065220,"pool_token_amount":134902883979505110}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":136208938223207945,"pool_token_amount":134880705055319713}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":136188875991115703,"pool_token_amount":134880305361278396}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":136128595376228089,"pool_token_amount":134879735556080752}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":136071260855455308,"pool_token_amount":134881292454512521}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":136009697070013226,"pool_token_amount":134880236550997261}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":135934907037741075,"pool_token_amount":134888511732587753}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":135849165100807926,"pool_token_amount":134885156326837817}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":135828715252946961,"pool_token_amount":134884344137541344}],[62,{"iota_amount":135808266604519526,"pool_token_amount":134883531878501105}],[60,{"iota_amount":135766913073955110,"pool_token_amount":134881459837802974}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":135777064619514460,"pool_token_amount":134911051168073684}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":135630094942699792,"pool_token_amount":134902524200320601}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":135609417669094800,"pool_token_amount":134901696008066952}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":135547148135322010,"pool_token_amount":134898975450503458}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":135420689137211322,"pool_token_amount":134892117197055319}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":135399589629070786,"pool_token_amount":134891228107888076}],[39,{"iota_amount":135357419191352053,"pool_token_amount":134889797317261869}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":105240200061506850,"pool_token_amount":104975280522328447}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":105202587531743277,"pool_token_amount":104972069241288095}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":80112926935672189,"pool_token_amount":80006854498085866}],[25,{"iota_amount":80097951021108794,"pool_token_amount":80008042263818632}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80059867024596320,"pool_token_amount":80004946598047977}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Neuler":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":35683373161066808,"pool_token_amount":34994490394891766}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35672267369426080,"pool_token_amount":35004440087395369}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35662645421288504,"pool_token_amount":35003591177397047}],[156,{"iota_amount":35657834303548547,"pool_token_amount":35003166178372890}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":35653022939722713,"pool_token_amount":35002741105396664}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35643140313591205,"pool_token_amount":35001636639481344}],[148,{"iota_amount":35616028443376967,"pool_token_amount":34996511364336165}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35547720116812150,"pool_token_amount":34988699062238596}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":35535543557153537,"pool_token_amount":34993710464371625}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":35526101185446392,"pool_token_amount":34992874464360129}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":35521386206958587,"pool_token_amount":34992459204630464}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":35511954695858077,"pool_token_amount":34991622956728828}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":35474237218626610,"pool_token_amount":34988277617412508}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":35454948161905751,"pool_token_amount":34990404576133077}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":35450234528602603,"pool_token_amount":34989939388397839}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35428567898756390,"pool_token_amount":34996550040770823}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":35412209762026023,"pool_token_amount":34994936615958897}],[101,{"iota_amount":35406801156498106,"pool_token_amount":34994402125739546}],[98,{"iota_amount":35390641586080974,"pool_token_amount":34992804765192307}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35363606589049442,"pool_token_amount":34990066918972081}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":35353004293942582,"pool_token_amount":34989018709370224}],[90,{"iota_amount":35347724302356720,"pool_token_amount":34988497930191400}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":35345593457950473,"pool_token_amount":34995791103041222}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":35324580332679633,"pool_token_amount":34993715558494393}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35308895520533857,"pool_token_amount":34992168731029072}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35304485902829944,"pool_token_amount":34992663164850980}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35293920887039378,"pool_token_amount":34991518677611392}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":35273122848776624,"pool_token_amount":34994308470972340}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35254180762654491,"pool_token_amount":34995368138808965}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35229392268668234,"pool_token_amount":34999954563620544}],[62,{"iota_amount":35224165972598948,"pool_token_amount":34999432655312142}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35208489779429513,"pool_token_amount":34997870357033418}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":35160566616344537,"pool_token_amount":34992788276251319}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":35139471965681958,"pool_token_amount":34990906972612088}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35117850015223609,"pool_token_amount":34988498850001897}],[41,{"iota_amount":35118011976131997,"pool_token_amount":34993445031405187}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35095530372939148,"pool_token_amount":34995706841903712}],[35,{"iota_amount":35089741957335133,"pool_token_amount":34995236939593584}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35077824004748050,"pool_token_amount":34994162920308389}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35059848655958500,"pool_token_amount":34992461931344813}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":25029747651635214,"pool_token_amount":25002933540529482}],[24,{"iota_amount":25024234138651360,"pool_token_amount":25002425051304324}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Node Guardians":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27549387941524800,"pool_token_amount":27022168902974431}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27534958060993249,"pool_token_amount":27020753278189034}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27528562404322186,"pool_token_amount":27021028759532416}],[156,{"iota_amount":27521145942685438,"pool_token_amount":27020301627890637}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":27502393269837002,"pool_token_amount":27018277072292323}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":27487384201233860,"pool_token_amount":27029437512367461}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27483773976752721,"pool_token_amount":27029082504199523}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":27473017818851890,"pool_token_amount":27028093611184334}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[130,{"iota_amount":27443294401457074,"pool_token_amount":27027653577526474}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27439677682536288,"pool_token_amount":27027297382731225}],[128,{"iota_amount":27435760170691895,"pool_token_amount":27026644689701177}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27396876583154162,"pool_token_amount":27026765427911265}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27393534458616104,"pool_token_amount":27026673739012322}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":27375841229763777,"pool_token_amount":27022039955103829}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":90853781868271072,"pool_token_amount":39531943192078969}],[109,{"iota_amount":27368010833734157,"pool_token_amount":27021085449334992}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[101,{"iota_amount":27344673232891896,"pool_token_amount":27027785359588034}],[100,{"iota_amount":27340428613976078,"pool_token_amount":27027365814228845}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27319758840997582,"pool_token_amount":27025371699939035}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":27292274202566033,"pool_token_amount":27016462199406908}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27272058539074558,"pool_token_amount":27014425172001060}],[84,{"iota_amount":27268013768750358,"pool_token_amount":27013990644589804}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27251647299013930,"pool_token_amount":27022983851297102}],[76,{"iota_amount":27247697707989586,"pool_token_amount":27022637559355919}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27243695570852098,"pool_token_amount":27022239758749069}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27234550890817198,"pool_token_amount":27020412184669709}],[72,{"iota_amount":27230325606596405,"pool_token_amount":27019991192633847}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27203018872386779,"pool_token_amount":27015922457042914}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27177321828618797,"pool_token_amount":27012155776517138}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27150824800568588,"pool_token_amount":27003712663946294}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27146803902323669,"pool_token_amount":27003394547831230}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27137876601793015,"pool_token_amount":27001878226260155}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":27129611648690434,"pool_token_amount":27001019101811283}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27125539649886122,"pool_token_amount":27000649745530941}],[47,{"iota_amount":27128192260536855,"pool_token_amount":27010659490295903}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27110083096013936,"pool_token_amount":27007366564048671}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":27097700804550695,"pool_token_amount":27006092670552160}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27088545265609991,"pool_token_amount":27004346883417797}],[37,{"iota_amount":27084214722228984,"pool_token_amount":27003824557641794}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27079960689322565,"pool_token_amount":27003390546323224}],[36,{"iota_amount":50711252482838312,"pool_token_amount":22293532425396754}],[35,{"iota_amount":27075459896187847,"pool_token_amount":27002892386111750}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27053458881544443,"pool_token_amount":27001412982505045}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27044019877524983,"pool_token_amount":27000394992326079}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004687736001501,"pool_token_amount":20000113328799675}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015785201,"pool_token_amount":20000000000315691}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000000306536}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}]],"NodeReal":[[167,{"iota_amount":27585591028843761,"pool_token_amount":27040328439926695}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27571176284491383,"pool_token_amount":27039074505752318}],[162,{"iota_amount":27567568097727115,"pool_token_amount":27038756035758663}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[155,{"iota_amount":27541813623509680,"pool_token_amount":27036484483614853}],[154,{"iota_amount":27538104502634295,"pool_token_amount":27036156787154624}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":27530336116290323,"pool_token_amount":27035157842308499}],[148,{"iota_amount":27515496144096493,"pool_token_amount":27033843343880050}],[146,{"iota_amount":27508072784951241,"pool_token_amount":27033186895188856}],[145,{"iota_amount":27504460004118292,"pool_token_amount":27032868266900692}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[141,{"iota_amount":27489859278277655,"pool_token_amount":27031437869883073}],[139,{"iota_amount":27482636119938358,"pool_token_amount":27030798587239713}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27468954579293631,"pool_token_amount":27030283533121817}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27443676592924012,"pool_token_amount":27028065732652181}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27440062796214057,"pool_token_amount":27027745415958252}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27428173578639094,"pool_token_amount":27025747625879371}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27424561655640837,"pool_token_amount":27025427321840576}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":27403930097928189,"pool_token_amount":27024525894617856}],[115,{"iota_amount":27396736324057543,"pool_token_amount":27023910990946537}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27348539350570812,"pool_token_amount":27014792269595554}],[98,{"iota_amount":27323650742759822,"pool_token_amount":27012360989953580}],[97,{"iota_amount":27319561207605778,"pool_token_amount":27011958486459938}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":27306986786882489,"pool_token_amount":27010715925176839}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[92,{"iota_amount":27298794557361848,"pool_token_amount":27009951309649590}],[91,{"iota_amount":27294738465080476,"pool_token_amount":27009549991425587}],[90,{"iota_amount":27290692681888124,"pool_token_amount":27009149639801859}],[89,{"iota_amount":27286662691234095,"pool_token_amount":27008762664888870}],[88,{"iota_amount":27281853089448708,"pool_token_amount":27007600704973231}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27237607568412242,"pool_token_amount":27003321239506881}],[76,{"iota_amount":27233589183155670,"pool_token_amount":27002906805078700}],[74,{"iota_amount":27225905506340878,"pool_token_amount":27002429510230693}],[72,{"iota_amount":27217568972680382,"pool_token_amount":27001601749960647}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[56,{"iota_amount":27160338937569391,"pool_token_amount":27003884254199815}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27143993833755693,"pool_token_amount":27002253476230554}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27139880766421816,"pool_token_amount":27001843421951713}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27127983734451455,"pool_token_amount":27001053215716512}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27078145873887525,"pool_token_amount":26995870365207456}],[35,{"iota_amount":27073650077267865,"pool_token_amount":26995731871358726}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[32,{"iota_amount":27057051152845784,"pool_token_amount":26992549422006409}],[31,{"iota_amount":27052468438083302,"pool_token_amount":26992433544606514}],[30,{"iota_amount":27047657069735885,"pool_token_amount":26992089456532519}],[26,{"iota_amount":20030294000214454,"pool_token_amount":20003465129949797}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004782736001501,"pool_token_amount":20000208307076332}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025407401,"pool_token_amount":20000000000508134}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000000306536}],[17,{"iota_amount":20000000012338901,"pool_token_amount":20000000000246767}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000550400,"pool_token_amount":20000000000011000}],[11,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000438600,"pool_token_amount":20000000000008771}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Nodeinfra":[[167,{"iota_amount":27559375009982524,"pool_token_amount":27023114402197502}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":27552658634595625,"pool_token_amount":27022897940985306}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":27541827892855012,"pool_token_amount":27021831150986408}],[161,{"iota_amount":27538223466255215,"pool_token_amount":27021477513390935}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":27499952346286940,"pool_token_amount":27019864215793870}],[147,{"iota_amount":27488324010012325,"pool_token_amount":27018281195208317}],[145,{"iota_amount":27481098742458786,"pool_token_amount":27017570980307168}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27470267029924433,"pool_token_amount":27016508640675664}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27444971752503706,"pool_token_amount":27014018250337281}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27405217257893820,"pool_token_amount":27010100968621481}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27401605334895563,"pool_token_amount":27009744983398486}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27397992729941081,"pool_token_amount":27009388888707104}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27387160451948090,"pool_token_amount":27008321796792989}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27374229577048502,"pool_token_amount":27008387221949382}],[114,{"iota_amount":27372074317960531,"pool_token_amount":27009466574912603}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27368463973174924,"pool_token_amount":27009110322803380}],[112,{"iota_amount":27364853511456589,"pool_token_amount":27008754016858665}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[99,{"iota_amount":27312192384929801,"pool_token_amount":27003609743056723}],[97,{"iota_amount":27303971457607102,"pool_token_amount":27002790654838127}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27276918430073200,"pool_token_amount":26998074760871620}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27244771784203299,"pool_token_amount":26994970395309954}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27232525983674144,"pool_token_amount":26993754203843731}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27216597319584065,"pool_token_amount":26992250105515658}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":27231218614348909,"pool_token_amount":27013896738148185}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27226406364909206,"pool_token_amount":27012794381456514}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27217858682553146,"pool_token_amount":27011856060338729}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":27209295462325109,"pool_token_amount":27011004372986002}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27200595071792134,"pool_token_amount":27010111839363411}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27196261083165880,"pool_token_amount":27009681475549188}],[65,{"iota_amount":27192193458597933,"pool_token_amount":27009515802248531}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27184191618003587,"pool_token_amount":27008720941198055}],[62,{"iota_amount":27180890384218668,"pool_token_amount":27009018606613222}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27164672641353807,"pool_token_amount":27007215958583499}],[56,{"iota_amount":27156670394056208,"pool_token_amount":27006420319506660}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27139409271377577,"pool_token_amount":27003877955426277}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27135297106402316,"pool_token_amount":27003468705193414}],[50,{"iota_amount":27131183220633612,"pool_token_amount":27003057523961289}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27122958655832562,"pool_token_amount":27002238903711211}],[45,{"iota_amount":27110518995872938,"pool_token_amount":27000907096808987}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27106410185946457,"pool_token_amount":27000500597770554}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":27098162824490009,"pool_token_amount":26999658406911454}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":27094046211665189,"pool_token_amount":26999244655137552}],[39,{"iota_amount":27085817385488932,"pool_token_amount":26998421010725256}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27077549809816872,"pool_token_amount":26997665133070293}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27073288781514822,"pool_token_amount":26997224139608307}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27059716145380343,"pool_token_amount":26995860571105599}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20014265190222270,"pool_token_amount":20001169522666181}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015785201,"pool_token_amount":20000000000315691}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Nodes.Guru":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":117686475508155709,"pool_token_amount":115267653332480162}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":117656643199765360,"pool_token_amount":115267346005533449}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":117550084704028124,"pool_token_amount":115251559939281019}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":117516661399016828,"pool_token_amount":115248667501666984}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":117500473527274997,"pool_token_amount":115247736096791087}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":117410802427652665,"pool_token_amount":115249285771423689}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":117349142247463573,"pool_token_amount":115247992529795738}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":117317412206804757,"pool_token_amount":115246399812528423}],[140,{"iota_amount":117301856163328200,"pool_token_amount":115245909655156547}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":117286772808572916,"pool_token_amount":115245886329679640}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":117253632441711201,"pool_token_amount":115242948570419268}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":117237602668038003,"pool_token_amount":115242008810254448}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":117175598050371743,"pool_token_amount":115240293631739007}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":117143655247642915,"pool_token_amount":115238521013833552}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":117020286231247571,"pool_token_amount":115235726223372769}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":116985207290927499,"pool_token_amount":115245663336677806}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":116953154793690429,"pool_token_amount":115243746510513481}],[117,{"iota_amount":91735889242077333,"pool_token_amount":39881683429017994}],[116,{"iota_amount":116932458914536402,"pool_token_amount":115238184464763911}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":116900205381062389,"pool_token_amount":115236066759408840}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":116880747276634126,"pool_token_amount":115231724492410761}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":116844176802042231,"pool_token_amount":115225352517402143}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":116632233851013511,"pool_token_amount":115064185738035447}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":116596598293215343,"pool_token_amount":115062693232664481}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[101,{"iota_amount":116494913854153055,"pool_token_amount":115048178987678343}],[100,{"iota_amount":116476254193041723,"pool_token_amount":115046756588766829}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":116283491639441372,"pool_token_amount":115040955437544956}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":116265380274235427,"pool_token_amount":115039595263943274}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":116230151378895092,"pool_token_amount":115037841004740780}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":116012752828188771,"pool_token_amount":115037419058933300}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":115975543242596101,"pool_token_amount":115035281147655888}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":115920158202729100,"pool_token_amount":115032720922193014}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":115825454813068252,"pool_token_amount":115024125395181210}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":115751037234786463,"pool_token_amount":115016069721124256}],[58,{"iota_amount":115731586493599066,"pool_token_amount":115013213496596261}],[56,{"iota_amount":115696865244205473,"pool_token_amount":115011760715269246}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":115642102941652648,"pool_token_amount":115007181058830997}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":115605746267406187,"pool_token_amount":115004311810474000}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":115557482963744787,"pool_token_amount":115023706236820249}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":115390985947892987,"pool_token_amount":114993716335627981}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":115372104392035525,"pool_token_amount":114991953477763892}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105249387658034717,"pool_token_amount":105001597031879604}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":105217926973029570,"pool_token_amount":105004241458509192}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":105153641467935837,"pool_token_amount":104993485488856848}],[26,{"iota_amount":80136740927695027,"pool_token_amount":80030085351175731}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"OKXEarn":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":37117193911214958,"pool_token_amount":36299830180084796}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":37098382686898554,"pool_token_amount":36290952530626613}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":37031754388508754,"pool_token_amount":36230579699154831}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[155,{"iota_amount":36691054568484356,"pool_token_amount":35921660419390522}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":36576345684678609,"pool_token_amount":35823876116360722}],[149,{"iota_amount":36832295016221346,"pool_token_amount":36089454557074817}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[146,{"iota_amount":90637706624017590,"pool_token_amount":88861972057746799}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":91676070457145353,"pool_token_amount":89916978933042797}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":91789575260950215,"pool_token_amount":90040528525810426}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":91611122856196091,"pool_token_amount":89926830106174626}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[130,{"iota_amount":84399389503615740,"pool_token_amount":82926336877593665}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":88429624215059049,"pool_token_amount":86910316373790238}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":85924627861814632,"pool_token_amount":84459821259626824}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":40316111875612709,"pool_token_amount":39672005793691464}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35940779234887846,"pool_token_amount":35371606219528685}],[116,{"iota_amount":35757488763792394,"pool_token_amount":35200892209887660}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":35754278652756605,"pool_token_amount":35207430402317214}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":35594768774960408,"pool_token_amount":35064867171568191}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35595148155654409,"pool_token_amount":35070085214521681}],[110,{"iota_amount":90853781868271072,"pool_token_amount":39531943192078969}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35480073272708419,"pool_token_amount":34972372517598419}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[98,{"iota_amount":55440878995164449,"pool_token_amount":54734071288674762}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":55390412076583163,"pool_token_amount":54718195271047831}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":55065932487194005,"pool_token_amount":54414254001141609}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":54661766092066391,"pool_token_amount":54072103591064238}],[84,{"iota_amount":54648129937144691,"pool_token_amount":54066762412997276}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":54497589434355597,"pool_token_amount":53925973275156457}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":51605282027759458,"pool_token_amount":51082107620827325}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":51525946690543514,"pool_token_amount":51027034863500756}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51346918790211696,"pool_token_amount":50945528147776939}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51361125823217545,"pool_token_amount":50967787819336203}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":51310194421359715,"pool_token_amount":50932687984784971}],[62,{"iota_amount":51291452733995272,"pool_token_amount":50921806331572814}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":53018708705851792,"pool_token_amount":52653007471509033}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":53000418196113380,"pool_token_amount":52642790838179819}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":52595215625265200,"pool_token_amount":52264111366265692}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":50803671852930646,"pool_token_amount":50506838772844657}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":50794839710415273,"pool_token_amount":50505684919807707}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":50798309443646145,"pool_token_amount":50532030244679497}],[46,{"iota_amount":50728803960814566,"pool_token_amount":50486097658412292}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50695288561974175,"pool_token_amount":50468225808107331}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50774239432369488,"pool_token_amount":50570329505007321}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50748846187197510,"pool_token_amount":50560758518909024}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":50711252482838312,"pool_token_amount":22293532425396754}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":58062561588327535,"pool_token_amount":57895943687738580}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":57394344276014225,"pool_token_amount":57258924062197410}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":41067072549102541,"pool_token_amount":41003176544476025}],[25,{"iota_amount":20055970167260436,"pool_token_amount":20032981601027745}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20017447026216700,"pool_token_amount":20008283836979363}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000000306536}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}]],"ONBUFF":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35755553804594748,"pool_token_amount":35058506559768683}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35732104748007190,"pool_token_amount":35056207722090948}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":35703420042653996,"pool_token_amount":35053378534122671}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":35698608210309877,"pool_token_amount":35052906111223115}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35693659766522488,"pool_token_amount":35052299677394546}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35650437962733896,"pool_token_amount":35048057536358684}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":35631180322615120,"pool_token_amount":35046163964578203}],[139,{"iota_amount":35626464818431187,"pool_token_amount":35045700155888273}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":35617024018024647,"pool_token_amount":35044771409110378}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":35564823924500976,"pool_token_amount":35039636678408932}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":35545907540867349,"pool_token_amount":35037725555020282}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":35541192080609846,"pool_token_amount":35037260750035872}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35536479210585666,"pool_token_amount":35036797033373768}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35531765078154576,"pool_token_amount":35036332248346953}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":35508022834094689,"pool_token_amount":35034101605106797}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35489036616644660,"pool_token_amount":35032112504521598}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35456667239824997,"pool_token_amount":35028914358903676}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":35434962106102993,"pool_token_amount":35026770467439139}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":35402541559263863,"pool_token_amount":35023567342293244}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":35386653101222386,"pool_token_amount":35022014966751572}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":35370838432684529,"pool_token_amount":35020467479836343}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35355091766686781,"pool_token_amount":35018945142654994}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":35307687972425842,"pool_token_amount":35014239126206605}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":35297235171560046,"pool_token_amount":35013198002032912}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35280674163874326,"pool_token_amount":35011554103757100}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35269253699062733,"pool_token_amount":35010150921555160}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35241468944455550,"pool_token_amount":35007092342708018}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":35230722045938881,"pool_token_amount":35005756526602261}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":35220274863673652,"pool_token_amount":35004719309521732}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":35199268834721407,"pool_token_amount":35002630247915968}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35193544977025882,"pool_token_amount":35001613573636610}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":35188210149451895,"pool_token_amount":35001083000273660}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":35177539104634003,"pool_token_amount":35000021498089074}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":35145529604766253,"pool_token_amount":34996833821675267}],[45,{"iota_amount":35140188457322417,"pool_token_amount":34996295693346909}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35124175931939861,"pool_token_amount":34994692890405050}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":35102601029089741,"pool_token_amount":34992533945057383}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35091569207686855,"pool_token_amount":34991438633860568}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35074002871551300,"pool_token_amount":34989684085299975}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":35062198072594542,"pool_token_amount":34988496476530898}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":25023781437987629,"pool_token_amount":25001028637337304}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25017968127371582,"pool_token_amount":25000625016830827}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000644154}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}],[0,{"iota_amount":0,"pool_token_amount":0}]],"ORBR":[[167,{"iota_amount":37166551428297432,"pool_token_amount":36739934539084584}],[166,{"iota_amount":37161124281809436,"pool_token_amount":36739231388310030}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[163,{"iota_amount":37146692020246402,"pool_token_amount":36738948107480308}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":37141899980829434,"pool_token_amount":36738871616396680}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[158,{"iota_amount":37720878501117888,"pool_token_amount":37331413550568382}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[153,{"iota_amount":37685935182468646,"pool_token_amount":37322104761579782}],[151,{"iota_amount":37675328242194215,"pool_token_amount":37321719046719007}],[150,{"iota_amount":37670115574450640,"pool_token_amount":37321615771401709}],[149,{"iota_amount":37664556083540768,"pool_token_amount":37321169417696832}],[145,{"iota_amount":45812999125957202,"pool_token_amount":45420581514136164}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":45807476144261182,"pool_token_amount":45421152941660251}],[142,{"iota_amount":45794040024733841,"pool_token_amount":45419914601184896}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":45787820113923876,"pool_token_amount":45419790237044066}],[140,{"iota_amount":45781600683066284,"pool_token_amount":45419666847698070}],[138,{"iota_amount":45749025891593452,"pool_token_amount":45399447203893213}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":45731266556735384,"pool_token_amount":45393936511308898}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":45724332183498229,"pool_token_amount":45393105659059332}],[134,{"iota_amount":45696910041769075,"pool_token_amount":45371935689696061}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":45671314415343845,"pool_token_amount":45370747214168143}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":47661002606006315,"pool_token_amount":47360232370765032}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":47632295104678364,"pool_token_amount":47338339005366235}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[125,{"iota_amount":46869983151948425,"pool_token_amount":46593044471280248}],[124,{"iota_amount":46863660829866980,"pool_token_amount":46592917797286589}],[123,{"iota_amount":46857239534986850,"pool_token_amount":46592692260065743}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":46850917476697248,"pool_token_amount":46592566532268605}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[117,{"iota_amount":46819024420911861,"pool_token_amount":46591933983830437}],[116,{"iota_amount":46812606798686281,"pool_token_amount":46591806253556240}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":44806489574726589,"pool_token_amount":44601117865325630}],[112,{"iota_amount":44788225292321188,"pool_token_amount":44600840122651124}],[111,{"iota_amount":44782192609546458,"pool_token_amount":44600802947305149}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":44762256747498687,"pool_token_amount":44600198035195350}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":44755516019574611,"pool_token_amount":44600122484177976}],[105,{"iota_amount":44741335522148600,"pool_token_amount":44599742721578875}],[104,{"iota_amount":36607405114830822,"pool_token_amount":36497225126432413}],[103,{"iota_amount":36601556355737172,"pool_token_amount":36497079187257996}],[102,{"iota_amount":36595773574119664,"pool_token_amount":36496964427572255}],[101,{"iota_amount":36590019738652305,"pool_token_amount":36496849658499637}],[98,{"iota_amount":36572825277692958,"pool_token_amount":36496503805283449}],[97,{"iota_amount":36567142570956670,"pool_token_amount":36496390386792727}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":36561586390033658,"pool_token_amount":36496284140778387}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":36548594108821223,"pool_token_amount":36494166762680151}],[93,{"iota_amount":36542947094847127,"pool_token_amount":36494053011129644}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":36537302453762035,"pool_token_amount":36493942227904212}],[90,{"iota_amount":36516247849461691,"pool_token_amount":36483927056717866}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":36510632139783770,"pool_token_amount":36483814841397702}],[88,{"iota_amount":36505020512493374,"pool_token_amount":36483701711530543}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":30015169822670723,"pool_token_amount":30002035795725712}],[86,{"iota_amount":30010636393852955,"pool_token_amount":30001898147572120}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":30005571973828314,"pool_token_amount":30001208863739583}],[84,{"iota_amount":0,"pool_token_amount":0}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}]],"Omnistake":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":28609683756336419,"pool_token_amount":28004743583313009}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":28605971862184793,"pool_token_amount":28004632112000689}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":28586456680186872,"pool_token_amount":28003227799768482}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":28549792300337147,"pool_token_amount":27999885573763917}],[149,{"iota_amount":28549360574739794,"pool_token_amount":28003086801899093}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":28554577447329977,"pool_token_amount":28026346905253312}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":28530333875668853,"pool_token_amount":28024328434166752}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":28508154519694028,"pool_token_amount":28024351831519103}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":28496520385442474,"pool_token_amount":28023831312883033}],[128,{"iota_amount":28491899208860911,"pool_token_amount":28022928303406095}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":28489459674176497,"pool_token_amount":28024168354951369}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":28443394266123413,"pool_token_amount":27997041978155747}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":28433451936347332,"pool_token_amount":27994534759066199}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":37075407573613345,"pool_token_amount":36528644943698378}],[114,{"iota_amount":37073327634173446,"pool_token_amount":36531483751777509}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":37053210453244984,"pool_token_amount":36531025831543706}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":37036806136951066,"pool_token_amount":36530846805863449}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":37013423129748596,"pool_token_amount":36535924435312521}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":47027926800044093,"pool_token_amount":46465622639475634}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":47020780522216210,"pool_token_amount":46465465929213536}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":47006421112943850,"pool_token_amount":46465182109476554}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":46992636222638200,"pool_token_amount":46465542858922888}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":43449944565865205,"pool_token_amount":43001178945336799}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":43412193445454598,"pool_token_amount":42989290990401509}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":46594225658605383,"pool_token_amount":46168267731461459}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":46580846147807644,"pool_token_amount":46168607781239828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":46559160099871554,"pool_token_amount":46168165202265338}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":46536773040504645,"pool_token_amount":46167680526758754}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":46468540072514688,"pool_token_amount":46135751569220313}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":46454002294426730,"pool_token_amount":46134942830072989}],[61,{"iota_amount":41377742452410679,"pool_token_amount":41099605675352496}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":31322896198533209,"pool_token_amount":31166979922328649}],[45,{"iota_amount":31304210743706198,"pool_token_amount":31166593736249823}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":31289938083883902,"pool_token_amount":31165555568573313}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":36218916656993845,"pool_token_amount":36086749399634529}],[39,{"iota_amount":36213437307298100,"pool_token_amount":36086824903145392}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27076151112747869,"pool_token_amount":26993934984689386}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":27051774894397587,"pool_token_amount":26991796188445484}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27047205226050170,"pool_token_amount":26991693263781969}],[29,{"iota_amount":27043237089605684,"pool_token_amount":26992302322216005}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":20027567552081893,"pool_token_amount":20004880247703561}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20011379893195300,"pool_token_amount":20002219509646472}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":20000000012328401,"pool_token_amount":20000000000246557}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000539900,"pool_token_amount":20000000000010790}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000010533}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"Overclock":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":142999389579770529,"pool_token_amount":140049918905452751}],[161,{"iota_amount":142980566463966982,"pool_token_amount":140049181510264273}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":142961667744315645,"pool_token_amount":140048391222678431}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":142848738647059522,"pool_token_amount":140047493504963810}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":142794821295851077,"pool_token_amount":140049548137401985}],[150,{"iota_amount":142775395358253005,"pool_token_amount":140048806116149086}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":142515253062174650,"pool_token_amount":140048083984265495}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":142495986620258156,"pool_token_amount":140047327623070507}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":142443539037406140,"pool_token_amount":140050330445713498}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":142386592048976881,"pool_token_amount":140048937069548647}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":142334484685174936,"pool_token_amount":140052289146787502}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":142315220862856152,"pool_token_amount":140051529909445646}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":142273814138357506,"pool_token_amount":140047180635217814}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":142104623766623584,"pool_token_amount":140044415934398182}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":142072334007002080,"pool_token_amount":140049029951615373}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":142015250628736030,"pool_token_amount":140049471809885579}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":141993817748324883,"pool_token_amount":140048600824923372}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":141907135236627103,"pool_token_amount":140046761905445397}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[99,{"iota_amount":141801390854424873,"pool_token_amount":140047257919027394}],[98,{"iota_amount":141781153913330901,"pool_token_amount":140048117059380185}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":141700499569270507,"pool_token_amount":140051344805212227}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":141682706874274208,"pool_token_amount":140054438142231380}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":141641258692663021,"pool_token_amount":140054357663467990}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":141333114169078173,"pool_token_amount":140054044363732384}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":141182216032082762,"pool_token_amount":140051283879429328}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":141142874908971489,"pool_token_amount":140055226590559006}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":141055657231325881,"pool_token_amount":140052103458879527}],[62,{"iota_amount":141032394265066998,"pool_token_amount":140049238665884212}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":140968954346296688,"pool_token_amount":140046952359552197}],[57,{"iota_amount":140926685338719287,"pool_token_amount":140045556123828752}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":140985829385269786,"pool_token_amount":140145062672926545}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":140966092576964849,"pool_token_amount":140145913655632911}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":140925502393417998,"pool_token_amount":140146510814211497}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":140824275130468155,"pool_token_amount":140148339086110193}],[45,{"iota_amount":140783170430647632,"pool_token_amount":140148627960237007}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":140762444940478916,"pool_token_amount":140148599744574864}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":140739919719869320,"pool_token_amount":140146780382931320}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":140703664649285555,"pool_token_amount":140152224979887424}],[39,{"iota_amount":291172403862715598,"pool_token_amount":290163853029919274}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":290987407824137599,"pool_token_amount":290066450205351398}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":290632780024112799,"pool_token_amount":290039693997968899}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":200545470488099766,"pool_token_amount":200203372949593630}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":150329971659880520,"pool_token_amount":150260697787320436}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":150292350986533445,"pool_token_amount":150257547817221532}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":150000000116171591,"pool_token_amount":150000000002323420}],[16,{"iota_amount":150000000053253526,"pool_token_amount":150000000001065061}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":150000000000000000,"pool_token_amount":150000000000000000}]],"P-OPS Team":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":117507999616454287,"pool_token_amount":115066175877758327}],[165,{"iota_amount":117492463959942243,"pool_token_amount":115065415236161618}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":117413795378752461,"pool_token_amount":115060630673260775}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":117365444722578103,"pool_token_amount":115058043559176431}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":117301076531251171,"pool_token_amount":115054688731749144}],[150,{"iota_amount":117252927004031719,"pool_token_amount":115052298585385906}],[148,{"iota_amount":117220686006119339,"pool_token_amount":115050474323984981}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":117157265239231932,"pool_token_amount":115047361391440062}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":116949858554748616,"pool_token_amount":115035989811116969}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":116902419693790534,"pool_token_amount":115033628349846384}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":116886566252281967,"pool_token_amount":115032854995181265}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":116642957744414580,"pool_token_amount":115014796392303047}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":116593965502648890,"pool_token_amount":115012685246804737}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":116576360351517112,"pool_token_amount":115011826409528183}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":116485176321630308,"pool_token_amount":115007195451454250}],[97,{"iota_amount":116376438722698525,"pool_token_amount":115001825555964470}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":116339595274818573,"pool_token_amount":114999250154338816}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":116268338264319134,"pool_token_amount":114995732289456757}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":116232982831830309,"pool_token_amount":114993910453241346}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":116160033012008246,"pool_token_amount":114987865478494127}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":116089894117099336,"pool_token_amount":114984268273074527}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":116019343285948774,"pool_token_amount":114980753617300744}],[74,{"iota_amount":115966994021310137,"pool_token_amount":114978156389626168}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":115948892037300831,"pool_token_amount":114977167643851788}],[72,{"iota_amount":115930443457588704,"pool_token_amount":114976253420375035}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":115854411490181571,"pool_token_amount":114970598890074131}],[67,{"iota_amount":115835852783373109,"pool_token_amount":114969678033622305}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":115817289421832312,"pool_token_amount":114968752091534491}],[65,{"iota_amount":115798732284105861,"pool_token_amount":114967832924977867}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":115766378046641741,"pool_token_amount":114968625280906524}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":115677688848886076,"pool_token_amount":114962857964878693}],[57,{"iota_amount":115660262561446509,"pool_token_amount":114962012820749924}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":115324673957084787,"pool_token_amount":114928568281439339}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":115307565977090514,"pool_token_amount":114928572936993589}],[37,{"iota_amount":115290264485871172,"pool_token_amount":114928507177808913}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":105274275401329003,"pool_token_amount":104959913543685611}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":105240694077841743,"pool_token_amount":104959911339347613}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":105155816484799688,"pool_token_amount":104960405580501455}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":80124710617595157,"pool_token_amount":80003429141768846}],[25,{"iota_amount":80092037019762735,"pool_token_amount":80002132413388206}],[24,{"iota_amount":80076374232695145,"pool_token_amount":80003267106809736}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80056776280851811,"pool_token_amount":80001857206186208}],[22,{"iota_amount":80038209583037116,"pool_token_amount":80001594140761966}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"P2P.ORG":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":232659480398663754,"pool_token_amount":228063512468797756}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":232628734485942527,"pool_token_amount":228060519700181068}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":233226276807079287,"pool_token_amount":228728722043871235}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":233155130173266768,"pool_token_amount":228715040372659305}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":232997551630969843,"pool_token_amount":228700733022766608}],[148,{"iota_amount":289202953612938816,"pool_token_amount":284017178525462232}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":288897112272647680,"pool_token_amount":283958438005597010}],[140,{"iota_amount":288847859266574580,"pool_token_amount":283944546326174875}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":288806048453616593,"pool_token_amount":283937885723380482}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":288767571538732592,"pool_token_amount":283934525975436670}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":288681343656081675,"pool_token_amount":283918717798690755}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":288634218721917840,"pool_token_amount":283906834915618491}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":288480355869737383,"pool_token_amount":283979384195112947}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":288401067611510260,"pool_token_amount":283970381577575968}],[128,{"iota_amount":288357327637111374,"pool_token_amount":283961854833854496}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":289016310521043611,"pool_token_amount":284852994504290249}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":288933579801905464,"pool_token_amount":284840671450151446}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":288854988916870947,"pool_token_amount":284832509545270569}],[116,{"iota_amount":288815685723464798,"pool_token_amount":284828460183233986}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":288694358835989253,"pool_token_amount":284812946488579765}],[112,{"iota_amount":288723576450062383,"pool_token_amount":284876508475425537}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":288467953878970605,"pool_token_amount":284849825940752169}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":288422395462941486,"pool_token_amount":284845189486402309}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":288285892793695342,"pool_token_amount":284831151829094437}],[101,{"iota_amount":288240894021778068,"pool_token_amount":284826702495415625}],[99,{"iota_amount":288151317415176764,"pool_token_amount":284817822744733955}],[98,{"iota_amount":288106658303800354,"pool_token_amount":284813408495757562}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":227690406179096068,"pool_token_amount":225366688318660085}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":227551297911497604,"pool_token_amount":225351551250794161}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":227487110537400031,"pool_token_amount":225348992579373152}],[82,{"iota_amount":227452230235124151,"pool_token_amount":225344903853984477}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":227418147227344030,"pool_token_amount":225341601681707308}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35366235229697407,"pool_token_amount":35101408355847458}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35335635512230172,"pool_token_amount":35095654822793532}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":35324523339277213,"pool_token_amount":35094155028242909}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":35313455985824558,"pool_token_amount":35092700596751841}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":35290717854026524,"pool_token_amount":35089188620600728}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35274495285735541,"pool_token_amount":35087480527576910}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":35263826265629940,"pool_token_amount":35086420107864466}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35253157328816786,"pool_token_amount":35085358509259351}],[46,{"iota_amount":35248749163291111,"pool_token_amount":35095307685875763}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35227185584149274,"pool_token_amount":35092958037959521}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":35200644447289464,"pool_token_amount":35091140691570459}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35159752689687761,"pool_token_amount":35087408140840125}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":25069117160534757,"pool_token_amount":25045377211693528}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25048370994433130,"pool_token_amount":25030656722899593}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000000000}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":25000000019836964,"pool_token_amount":25000000000000000}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Parasol":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":28105228053244035,"pool_token_amount":27536160498788316}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":28091871431126661,"pool_token_amount":27538887772305042}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":28084444517315103,"pool_token_amount":27538006615920671}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":28076626338269187,"pool_token_amount":27536914058787744}],[156,{"iota_amount":28072817536635842,"pool_token_amount":27536465788136761}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":28069008540177744,"pool_token_amount":27536017441004312}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":28057214563343112,"pool_token_amount":27534313298563638}],[151,{"iota_amount":28056547857180506,"pool_token_amount":27536949195700017}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":28038251873682442,"pool_token_amount":27535187593397500}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":28033044295129726,"pool_token_amount":27536493663106548}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":28112681500505769,"pool_token_amount":27637267823656994}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":28105254831322450,"pool_token_amount":27636393384224769}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":28101541617485369,"pool_token_amount":27635955231494465}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":28082871194658214,"pool_token_amount":27624022283627387}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":28075027212001431,"pool_token_amount":27638821378783803}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":28067632996623100,"pool_token_amount":27637975437091059}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":28063930052036571,"pool_token_amount":27637546560962875}],[121,{"iota_amount":28060218895940668,"pool_token_amount":27637108867598263}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":28056864329134685,"pool_token_amount":27637021295062126}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":28049608378034057,"pool_token_amount":27639524364416735}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":28042619156010909,"pool_token_amount":27639072060199247}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27934111927294777,"pool_token_amount":27541782108832332}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":27927405829933619,"pool_token_amount":27538389814066462}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":27907353000476612,"pool_token_amount":27536249737794829}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":27910376229811811,"pool_token_amount":27547552541928937}],[102,{"iota_amount":27900291883127294,"pool_token_amount":27545903541431180}],[101,{"iota_amount":27896034058972133,"pool_token_amount":27545819485371256}],[99,{"iota_amount":27887065845130865,"pool_token_amount":27545174256178643}],[97,{"iota_amount":27874411977067631,"pool_token_amount":27540847686972144}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27849381322636822,"pool_token_amount":27540420751151143}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27840674866615040,"pool_token_amount":27539867947540308}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27787719911747577,"pool_token_amount":27511537907946286}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27762247029114079,"pool_token_amount":27506399198940400}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27714901158552257,"pool_token_amount":27504817043634705}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27679811355469954,"pool_token_amount":27502418996315286}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27657768377537697,"pool_token_amount":27500536588739527}],[53,{"iota_amount":27653383522729181,"pool_token_amount":27500184345552557}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27643370837573201,"pool_token_amount":27498242771149748}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":27625325241828109,"pool_token_amount":27496326140878180}],[45,{"iota_amount":27617205990063838,"pool_token_amount":27496266505492534}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":27591776099166270,"pool_token_amount":27495455437639117}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27587510786321686,"pool_token_amount":27495331366010997}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":27551706625148448,"pool_token_amount":27490620328339613}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27547028803693176,"pool_token_amount":27490518189373048}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27032327474120123,"pool_token_amount":26990832958257579}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20014778685211770,"pool_token_amount":20000925844348894}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000000507924}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015774701,"pool_token_amount":20000000000315481}],[17,{"iota_amount":20000000012328401,"pool_token_amount":20000000000246557}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}]],"Peeranha":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35758894183310856,"pool_token_amount":35059584722303078}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35740154577996887,"pool_token_amount":35058114604866237}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35730531615214034,"pool_token_amount":35057359411338561}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":35712760133772216,"pool_token_amount":35048608597983111}],[154,{"iota_amount":35707948301428097,"pool_token_amount":35048230809827779}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35674249429866097,"pool_token_amount":35045573157131616}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":35600706280581514,"pool_token_amount":35038081533126534}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":35586347929643986,"pool_token_amount":35036952729338780}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":35576910378190902,"pool_token_amount":35036211162652818}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":35553334979475706,"pool_token_amount":35034357003091252}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35534477539224661,"pool_token_amount":35032870155426745}],[117,{"iota_amount":91735889242077333,"pool_token_amount":39881683429017994}],[116,{"iota_amount":35524858921441345,"pool_token_amount":35032118752807723}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35520545617559264,"pool_token_amount":35032232381766662}],[114,{"iota_amount":35515803294599231,"pool_token_amount":35031922731963921}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":35511012519884878,"pool_token_amount":35031565582343472}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":35506218573566429,"pool_token_amount":35031205400529076}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35496008901754460,"pool_token_amount":35029872980269025}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[97,{"iota_amount":35424606144160149,"pool_token_amount":35023537077944574}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35403007903923037,"pool_token_amount":35021849424684213}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35397702072264658,"pool_token_amount":35021431359272768}],[90,{"iota_amount":35387125626202785,"pool_token_amount":35020595091092075}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":35376572869390470,"pool_token_amount":35019759556506773}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":35355203441000764,"pool_token_amount":35017747773056079}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":35344640004056391,"pool_token_amount":35016919848256162}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35323442580813547,"pool_token_amount":35015187493469136}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[75,{"iota_amount":35307547006622099,"pool_token_amount":35013926782957597}],[74,{"iota_amount":35302080761635434,"pool_token_amount":35013373602220286}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":35291078870419226,"pool_token_amount":35012501511453523}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35285521767611921,"pool_token_amount":35012060452512747}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":35268844737064485,"pool_token_amount":35010734612118056}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35241547224458920,"pool_token_amount":35008502228175824}],[62,{"iota_amount":35236321928389634,"pool_token_amount":35008085140956805}],[61,{"iota_amount":35230987206660724,"pool_token_amount":35007661127587170}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":35214952671244891,"pool_token_amount":35006358888327130}],[57,{"iota_amount":35209602159102672,"pool_token_amount":35005918750020835}],[56,{"iota_amount":35204267008185572,"pool_token_amount":35005494406998279}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35188102590145810,"pool_token_amount":35004062887966901}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":35182496140752505,"pool_token_amount":35003368701807392}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":35171923464700508,"pool_token_amount":35002615254084999}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35133989981184742,"pool_token_amount":34999051598883865}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":35123291162317273,"pool_token_amount":34998172737625768}],[40,{"iota_amount":35117843997705116,"pool_token_amount":34997737600067856}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":35054492355530874,"pool_token_amount":34992633808071220}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":35041902797559540,"pool_token_amount":34991493278221693}],[25,{"iota_amount":25031167537251109,"pool_token_amount":25004352851489906}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Persimmon":[[164,{"iota_amount":112227683037367362,"pool_token_amount":110219866592942141}],[163,{"iota_amount":112212848044823513,"pool_token_amount":110218409633966776}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":112168361201187388,"pool_token_amount":110214040384139651}],[159,{"iota_amount":112153082745924805,"pool_token_amount":110212592250579525}],[158,{"iota_amount":112137746331489804,"pool_token_amount":110211085144072776}],[157,{"iota_amount":112122401453904101,"pool_token_amount":110209569855531985}],[156,{"iota_amount":112107066017044711,"pool_token_amount":110208062474042964}],[155,{"iota_amount":112091729795857642,"pool_token_amount":110206554829842020}],[152,{"iota_amount":112045633103266527,"pool_token_amount":110201949563954170}],[146,{"iota_amount":111954084150651889,"pool_token_amount":110192941661678562}],[145,{"iota_amount":111938926279742138,"pool_token_amount":110191449718713516}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":111863192236624004,"pool_token_amount":110183997214292913}],[136,{"iota_amount":111802547348269505,"pool_token_amount":110178022664719383}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":111787394297749332,"pool_token_amount":110176529377012610}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":111772240372724398,"pool_token_amount":110175035820938328}],[133,{"iota_amount":111757084156599136,"pool_token_amount":110173541856771525}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":111741926151803171,"pool_token_amount":110172047533916426}],[130,{"iota_amount":111713320426136078,"pool_token_amount":110170749562640274}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":111606106091983701,"pool_token_amount":110158648006646530}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":111576024232726264,"pool_token_amount":110155696425068691}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":111530569363589453,"pool_token_amount":110151190480703361}],[115,{"iota_amount":111485142945264110,"pool_token_amount":110146703472966633}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":111454860063083419,"pool_token_amount":110143713785461507}],[112,{"iota_amount":111439716183370166,"pool_token_amount":110142217212247030}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":111392585360485755,"pool_token_amount":110137558412981767}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":111358810039405209,"pool_token_amount":110134224098524191}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":111306070949162748,"pool_token_amount":110128791996608064}],[101,{"iota_amount":111253657870930831,"pool_token_amount":110123606276422893}],[99,{"iota_amount":111219032062719251,"pool_token_amount":110120178621905145}],[97,{"iota_amount":111184581204658067,"pool_token_amount":110116769120924392}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":111065073303964671,"pool_token_amount":110104840784559689}],[88,{"iota_amount":111031394295129591,"pool_token_amount":110101501772695079}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":111014568925803947,"pool_token_amount":110099834224206812}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":110863498586347382,"pool_token_amount":110084945178590118}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":110830146749414945,"pool_token_amount":110081631405103542}],[72,{"iota_amount":110762123888928727,"pool_token_amount":110074870983042892}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":110727005700839138,"pool_token_amount":110071388816803774}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":110656095774589185,"pool_token_amount":110064338285972802}],[65,{"iota_amount":110638614640091332,"pool_token_amount":110062868193081271}],[60,{"iota_amount":110555058643750240,"pool_token_amount":110054374710059572}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":110538289477447614,"pool_token_amount":110052615795473233}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":110471379015976413,"pool_token_amount":110045850638640449}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":110437798651186561,"pool_token_amount":110042493658894013}],[52,{"iota_amount":110421014216654574,"pool_token_amount":110040821223313695}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":110319988540272170,"pool_token_amount":110030748189089607}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[41,{"iota_amount":110236973211213625,"pool_token_amount":110023967832868463}],[39,{"iota_amount":110202741139117584,"pool_token_amount":110020551901244503}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":110094964850204691,"pool_token_amount":110009727906822850}],[31,{"iota_amount":110057570637844902,"pool_token_amount":110005982016592208}],[30,{"iota_amount":110038784151262396,"pool_token_amount":110004104248529913}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}]],"Qredo":[[167,{"iota_amount":27599107811630911,"pool_token_amount":27058723875922703}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27595498756964254,"pool_token_amount":27058370036516572}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":27591890475148197,"pool_token_amount":27058016231275616}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27588281432178205,"pool_token_amount":27057662309719039}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27577360306807787,"pool_token_amount":27056502784447443}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":27544796417047322,"pool_token_amount":27053939547162182}],[148,{"iota_amount":27529959444853492,"pool_token_amount":27052482023197506}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":27510159761668195,"pool_token_amount":27049175048019860}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27502938562293733,"pool_token_amount":27048464985708973}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27488489199243800,"pool_token_amount":27047048146695410}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27477651438145127,"pool_token_amount":27045984306455959}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27464515975774454,"pool_token_amount":27042658640711101}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":27461305301950217,"pool_token_amount":27042700474238432}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":27447971639082239,"pool_token_amount":27042385303753672}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27444359878260398,"pool_token_amount":27042029464185640}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27437134771008295,"pool_token_amount":27041316615532141}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":27429908324044875,"pool_token_amount":27040602578885700}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27394481133804883,"pool_token_amount":27034503140709555}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27387257779722297,"pool_token_amount":27033789277101706}],[109,{"iota_amount":27383230655651339,"pool_token_amount":27033380311076653}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":27371169854306997,"pool_token_amount":27032466162998719}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":27350129740134709,"pool_token_amount":27030437759135852}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":27313218252081368,"pool_token_amount":27027224562043597}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":27288951821799689,"pool_token_amount":27024816837539144}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27284806368104000,"pool_token_amount":27024292542209565}],[84,{"iota_amount":27280801606684136,"pool_token_amount":27023897686337208}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27276110027113460,"pool_token_amount":27022822371624461}],[82,{"iota_amount":27272094120287115,"pool_token_amount":27022416455073403}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27267310736697625,"pool_token_amount":27021249687187487}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27263909930206789,"pool_token_amount":27021651834861810}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27235421383449975,"pool_token_amount":27018505050122596}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27226972701093915,"pool_token_amount":27017665066677253}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27194179871560463,"pool_token_amount":27015398134428427}],[61,{"iota_amount":27185625007739984,"pool_token_amount":27014053784763418}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27181624187361666,"pool_token_amount":27013657127064800}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":27168944730890429,"pool_token_amount":27011791261843452}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27152127916385030,"pool_token_amount":27009591688927958}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27143907117106444,"pool_token_amount":27008777459760939}],[50,{"iota_amount":27139794231337740,"pool_token_amount":27008367323166028}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27135660069296138,"pool_token_amount":27007936137062748}],[48,{"iota_amount":27130593672870713,"pool_token_amount":27006577410664521}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27113919772079627,"pool_token_amount":27004714396463452}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27087984195364060,"pool_token_amount":27001000872703755}],[37,{"iota_amount":27083752651983053,"pool_token_amount":27000577282926805}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":27074939798215303,"pool_token_amount":26999587348485205}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27034349053275831,"pool_token_amount":26992853096947182}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000527000,"pool_token_amount":20000000000010533}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"QuantNode":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27584178708123104,"pool_token_amount":27058590379361670}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":27562256673518819,"pool_token_amount":27056462570033452}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27554841344744369,"pool_token_amount":27055736368186019}],[154,{"iota_amount":27551132223868984,"pool_token_amount":27055372174060122}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27547285860004702,"pool_token_amount":27054873306438337}],[149,{"iota_amount":27532431488476590,"pool_token_amount":27053398739410541}],[148,{"iota_amount":27526746132210402,"pool_token_amount":27051092652392961}],[145,{"iota_amount":27515708975491280,"pool_token_amount":27050007876419024}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27512095197606132,"pool_token_amount":27049652614309482}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":27479047711490971,"pool_token_amount":27036330883070778}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":27449748567997737,"pool_token_amount":27033110918164541}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27443534972742359,"pool_token_amount":27043013946484426}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27413869864191389,"pool_token_amount":27029794688786512}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27410259039251653,"pool_token_amount":27029438664773628}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":27403038270963458,"pool_token_amount":27028726577097304}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27396009092377394,"pool_token_amount":27028202725973182}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27388786680788512,"pool_token_amount":27027488362219339}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27378005553916819,"pool_token_amount":27026470167206828}],[109,{"iota_amount":27373981319340064,"pool_token_amount":27026064025983141}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":27345259385703128,"pool_token_amount":27023559067487466}],[99,{"iota_amount":27332631663794315,"pool_token_amount":27022310970765038}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27307668257664995,"pool_token_amount":27019845685944340}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27299547583990550,"pool_token_amount":27019043014821838}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":27287428914813513,"pool_token_amount":27017852418455666}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":27279353698265701,"pool_token_amount":27017052820401389}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":27263370644235871,"pool_token_amount":27015518685246700}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27255116716194683,"pool_token_amount":27014684685477184}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27247148038159528,"pool_token_amount":27013930650453094}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27235064948176851,"pool_token_amount":27012662915016780}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27226949264994893,"pool_token_amount":27011856134462129}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":27181644059518491,"pool_token_amount":27008289905212821}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27144145998919972,"pool_token_amount":27003429726485459}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27135919189343523,"pool_token_amount":27002609463593674}],[50,{"iota_amount":27131807303574819,"pool_token_amount":27002200295045777}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27123561730979871,"pool_token_amount":27001360808233130}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27102628393612395,"pool_token_amount":26998941162758177}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":27089788534258292,"pool_token_amount":26997211441934633}],[39,{"iota_amount":27085565714860988,"pool_token_amount":26996691582657661}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27077222051078338,"pool_token_amount":26995859896355301}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27072978018171919,"pool_token_amount":26995435870948281}],[35,{"iota_amount":27068561226098944,"pool_token_amount":26995021490536900}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27059384431074923,"pool_token_amount":26994051475202143}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27054694043644871,"pool_token_amount":26993471702404773}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":20032535617404197,"pool_token_amount":20002790034527758}],[26,{"iota_amount":20028489960849676,"pool_token_amount":20002347428849774}],[24,{"iota_amount":20019713178904400,"pool_token_amount":20001278877477511}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20015043495211770,"pool_token_amount":20001190470087279}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":20000000012328401,"pool_token_amount":20000000000246557}],[16,{"iota_amount":20000000007017893,"pool_token_amount":20000000000140348}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"RepublicCrypto":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27518394127507575,"pool_token_amount":27002626099761244}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27511073067126818,"pool_token_amount":27001905047644859}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":27492528915835205,"pool_token_amount":27000084509766762}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27488560151970923,"pool_token_amount":26999465392784663}],[152,{"iota_amount":27484784639491233,"pool_token_amount":26999036056515951}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":27437272211411380,"pool_token_amount":26991018583311625}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":27453709430673486,"pool_token_amount":27013589026104062}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27439201795195527,"pool_token_amount":27012116986496014}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":27428360250380923,"pool_token_amount":27011049578550259}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":27417512450030962,"pool_token_amount":27009981174517965}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":27413899667232716,"pool_token_amount":27009626164828883}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27385005526819903,"pool_token_amount":27006778175512439}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27374164898342820,"pool_token_amount":27005700126390502}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":27286617867340238,"pool_token_amount":26997419556264862}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27274522069082917,"pool_token_amount":26996303707021622}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":27262208344662218,"pool_token_amount":26994919952538944}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":27250113020474940,"pool_token_amount":26993720060432218}],[84,{"iota_amount":27246097244419589,"pool_token_amount":26993314237854970}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27234000202662398,"pool_token_amount":26992046956064731}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27229769758210700,"pool_token_amount":26991626777986109}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27230094522354776,"pool_token_amount":27002668417978373}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27222631199291328,"pool_token_amount":27002408679052580}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27214501516245364,"pool_token_amount":27001587947935496}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":27193063623700910,"pool_token_amount":26999275412290430}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27184396566623173,"pool_token_amount":26998415715910099}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27172074058231472,"pool_token_amount":26997203802513422}],[61,{"iota_amount":27164078727035926,"pool_token_amount":26996415207245318}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27159962901136190,"pool_token_amount":26995904198310273}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27154651301220999,"pool_token_amount":26994203473907275}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":27118243039153853,"pool_token_amount":26990723640875579}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27114129952793787,"pool_token_amount":26990313370583526}],[47,{"iota_amount":27118002721444452,"pool_token_amount":27001538161967465}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27080602536551803,"pool_token_amount":26997463722009625}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27045211816627500,"pool_token_amount":26994224996840980}],[29,{"iota_amount":27040538101686602,"pool_token_amount":26993756709836426}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27035856256303972,"pool_token_amount":26993290235514122}],[26,{"iota_amount":20028084520041390,"pool_token_amount":20003446259403312}],[25,{"iota_amount":20024005503451592,"pool_token_amount":20003171079883520}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20014574675222270,"pool_token_amount":20001852252391789}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015785201,"pool_token_amount":20000000001578507}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000001532728}],[17,{"iota_amount":20000000012338901,"pool_token_amount":20000000001233879}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000702830}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000053743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000046005}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000460100,"pool_token_amount":20000000000046005}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000046005}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000046005}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000045147}],[4,{"iota_amount":20000000000451500,"pool_token_amount":20000000000045147}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Restake":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35717582725975671,"pool_token_amount":35007219033944051}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35703413994984135,"pool_token_amount":35005937839805020}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35698703306827391,"pool_token_amount":35005522159738621}],[161,{"iota_amount":35694096650674716,"pool_token_amount":35005114718663386}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35655478328876849,"pool_token_amount":35001413777721165}],[152,{"iota_amount":35650635236768091,"pool_token_amount":35000958219030582}],[150,{"iota_amount":35641011649457129,"pool_token_amount":35000107826835567}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35625205569842308,"pool_token_amount":34997399381212711}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35601176885340147,"pool_token_amount":34995230593969343}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":35604544504016375,"pool_token_amount":35006978275899326}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":35580991263551123,"pool_token_amount":35004928920783392}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":35571458650580629,"pool_token_amount":35004086638446579}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":35554309153394555,"pool_token_amount":35004295058928420}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35525330041841593,"pool_token_amount":35001120116466332}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":35515884202875397,"pool_token_amount":35000270002985383}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35501926603725040,"pool_token_amount":34999197277182035}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[103,{"iota_amount":35441922477589680,"pool_token_amount":35007702862211387}],[102,{"iota_amount":35436489411883104,"pool_token_amount":35007168893471447}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35405019251432707,"pool_token_amount":35004847949929551}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":35367239132873658,"pool_token_amount":35000717729347229}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":35356797552731012,"pool_token_amount":34999777565974945}],[86,{"iota_amount":35351743308628229,"pool_token_amount":34999469832131043}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35345709285561347,"pool_token_amount":34998169807947148}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35334418857184595,"pool_token_amount":34996313471800797}],[82,{"iota_amount":35329203780680881,"pool_token_amount":34995811323877697}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35317882424665424,"pool_token_amount":34994122020282344}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":35304788969244336,"pool_token_amount":34999792715827689}],[74,{"iota_amount":35294650050199905,"pool_token_amount":34999063146874409}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":35283647145321490,"pool_token_amount":34997971994591947}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35278087042514185,"pool_token_amount":34997417807920068}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":35255814551423449,"pool_token_amount":34995171218703469}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":35244905840822630,"pool_token_amount":34994270915479394}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":35221680559966033,"pool_token_amount":34995330436387159}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35216313439817731,"pool_token_amount":34995032670618110}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":35190668192976831,"pool_token_amount":34994624547421400}],[53,{"iota_amount":35185114605386545,"pool_token_amount":34994142476951964}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35164100370475282,"pool_token_amount":34993404481729347}],[48,{"iota_amount":35158766254209608,"pool_token_amount":34993140017057700}],[47,{"iota_amount":35153499914264973,"pool_token_amount":34992942224866677}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":35103421153391202,"pool_token_amount":34988705878533004}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35094727543853031,"pool_token_amount":34990491700264662}],[35,{"iota_amount":35088894008249016,"pool_token_amount":34990149742164635}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":35082997652691813,"pool_token_amount":34989851017398974}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":35054517425779291,"pool_token_amount":34989478071084203}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35048373126142559,"pool_token_amount":34989160049621319}],[24,{"iota_amount":25028874952704661,"pool_token_amount":25005890002660342}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":25015591324167687,"pool_token_amount":25004031152199461}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000011444}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Scale3Labs":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":107222357865350365,"pool_token_amount":105000494150105556}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":107208122197127154,"pool_token_amount":104999797115882505}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":107107607234778958,"pool_token_amount":104994974581276331}],[156,{"iota_amount":107092912419194197,"pool_token_amount":104994197525443621}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":107048765814818858,"pool_token_amount":104991810120249031}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":106960093485371249,"pool_token_amount":104986486418307666}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":106857121484892416,"pool_token_amount":104979712216431345}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":106828217467246334,"pool_token_amount":104978293248557867}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":106731822099801048,"pool_token_amount":104991543728152811}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":106717355226093962,"pool_token_amount":104990832178079217}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":106688689784414561,"pool_token_amount":104989661105188292}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":106659744254927597,"pool_token_amount":104988190987957248}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":106630877595296484,"pool_token_amount":104986798023813915}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":106588554165550386,"pool_token_amount":104985665450931528}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":106574110867059171,"pool_token_amount":104984954145595697}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":107703402117528133,"pool_token_amount":106179773178117190}],[112,{"iota_amount":107688739690771181,"pool_token_amount":106179031696277629}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":107609365432363324,"pool_token_amount":106205752690152651}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":107576138953245047,"pool_token_amount":106204779608852885}],[99,{"iota_amount":107508990047880501,"pool_token_amount":106201481199547936}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":107406855753509742,"pool_token_amount":106194206153868299}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":107283263515989368,"pool_token_amount":106194371837270365}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":107250116810080593,"pool_token_amount":106192017672419437}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":107149833228810307,"pool_token_amount":106199464807713232}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":107133711537584103,"pool_token_amount":106198660223290785}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":111517071077289884,"pool_token_amount":110677010907401348}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":111499179484097641,"pool_token_amount":110676123067593298}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":111446346849820957,"pool_token_amount":110672201666522711}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":111378371772431070,"pool_token_amount":110668027709242495}],[58,{"iota_amount":126436300717398597,"pool_token_amount":125650408066685002}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":126438128399750527,"pool_token_amount":125688325522154968}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":126380230194459064,"pool_token_amount":125685247119390386}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":126361301551419031,"pool_token_amount":125684590507196072}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":126306520836068722,"pool_token_amount":125684605634841908}],[45,{"iota_amount":126237539863274624,"pool_token_amount":125688983548105860}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":126198957695699504,"pool_token_amount":125687149871855832}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":126159950446736197,"pool_token_amount":125685107639431452}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":126127670238763111,"pool_token_amount":125690083491351270}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":126088085226035135,"pool_token_amount":125688023995415001}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":126067999650383527,"pool_token_amount":125687035218797835}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":125981750441425048,"pool_token_amount":125681834621982432}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":125920519088971911,"pool_token_amount":125682184437956645}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":100878348090299029,"pool_token_amount":100722094039367962}],[24,{"iota_amount":80120676710549734,"pool_token_amount":80045819984284639}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80039431872812636,"pool_token_amount":80002248108640848}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}]],"SenseiNode":[[167,{"iota_amount":27162396517391731,"pool_token_amount":26619852612617942}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27151855870666605,"pool_token_amount":26619012580476678}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27148347595093622,"pool_token_amount":26618737425935374}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27134011764523766,"pool_token_amount":26617426885116120}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27130403196100028,"pool_token_amount":26617143695337453}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":27115968806450440,"pool_token_amount":26616010580394867}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":27093952870227529,"pool_token_amount":26613954423592405}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27090352788916733,"pool_token_amount":26613681620634691}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":27079298743478046,"pool_token_amount":26612618379435326}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":27054655694904172,"pool_token_amount":26614531917711992}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27036997990896381,"pool_token_amount":26613512550813873}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":27026150205630873,"pool_token_amount":26612658227676292}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27011858579862503,"pool_token_amount":26611675835663857}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27008246656864246,"pool_token_amount":26611391162253864}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":26997410585034461,"pool_token_amount":26610536001328247}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":26993799760094725,"pool_token_amount":26610251274417663}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":26990189054720514,"pool_token_amount":26609966521907753}],[116,{"iota_amount":26982969079130202,"pool_token_amount":26609397024984589}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":26965302283502734,"pool_token_amount":26608351953044323}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":26961690472049869,"pool_token_amount":26608066832580332}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":26949617108700187,"pool_token_amount":26607084555729423}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":26945498221308261,"pool_token_amount":26606759229573203}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":26928623196264628,"pool_token_amount":26605287826864003}],[98,{"iota_amount":27921532955999946,"pool_token_amount":27601962771733221}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27913128883057364,"pool_token_amount":27601298092163681}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":27871041910068049,"pool_token_amount":27597584367591736}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27833762954518448,"pool_token_amount":27594536848853596}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27825538158344935,"pool_token_amount":27593883563842005}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27817200682349386,"pool_token_amount":27593220704394446}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27808529718879052,"pool_token_amount":27592530738187915}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27804093609044404,"pool_token_amount":27592087322151683}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27791095195350465,"pool_token_amount":27591060770612979}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27786761206724211,"pool_token_amount":27590716547130030}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27774213930399436,"pool_token_amount":27589729767151923}],[62,{"iota_amount":27770080973918336,"pool_token_amount":27589382135138947}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27753101025248712,"pool_token_amount":27587546650447791}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27740791811017396,"pool_token_amount":27586593007136325}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":27718718830117940,"pool_token_amount":27583453292628092}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27714100743757874,"pool_token_amount":27582622400298940}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":27649415410565028,"pool_token_amount":27576575748696065}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27640034913333078,"pool_token_amount":27575796218381600}],[31,{"iota_amount":27635161034796068,"pool_token_amount":27575219052618349}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":20032226211314164,"pool_token_amount":20005568803634186}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20018800856834969,"pool_token_amount":20004946069801195}],[22,{"iota_amount":20013666061485663,"pool_token_amount":20004504611660062}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000550400,"pool_token_amount":20000000000011000}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Shinlabs":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":139611708560290726,"pool_token_amount":136763299300037560}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":139524795178930598,"pool_token_amount":136765082773353556}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":132868400714405272,"pool_token_amount":130307934356827088}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[149,{"iota_amount":132781302015114272,"pool_token_amount":130307043169385011}],[148,{"iota_amount":132764154217177886,"pool_token_amount":130307038885608840}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":132723021619968019,"pool_token_amount":130300153588652790}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":132688780612661779,"pool_token_amount":130300054896609656}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":132654716863609162,"pool_token_amount":130300099514534420}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":139223886130366403,"pool_token_amount":136788748772952893}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":139117847397577901,"pool_token_amount":136789792169450744}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":139080456341026962,"pool_token_amount":136788188188768743}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":139044692193630716,"pool_token_amount":136788191997471619}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":139026856803332103,"pool_token_amount":136788204030916513}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":138991194732180944,"pool_token_amount":136788221359484758}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":138974304790193155,"pool_token_amount":136789142884538911}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":138919887852746577,"pool_token_amount":136788213032796344}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":138902052155119590,"pool_token_amount":136788204783564201}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":138622774492862190,"pool_token_amount":136706713066975721}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":138584152847581472,"pool_token_amount":136705737655804546}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":138564357981472328,"pool_token_amount":136705748814406209}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":138545423046159958,"pool_token_amount":136706817754025842}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":138503004218615786,"pool_token_amount":136705748832838246}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":138482287567639454,"pool_token_amount":136705762772910618}],[102,{"iota_amount":138440833821224606,"pool_token_amount":136705751042294063}],[97,{"iota_amount":138338899111063414,"pool_token_amount":136705748561542417}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":138278904774575410,"pool_token_amount":136706767783363885}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":138098774532810181,"pool_token_amount":136705887887785280}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":138039470627260157,"pool_token_amount":136705901230469171}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":138019740809129886,"pool_token_amount":136705942052512369}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":137529392656175494,"pool_token_amount":136459732738741750}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":137465471371773456,"pool_token_amount":136458531816196650}],[65,{"iota_amount":137444500652830732,"pool_token_amount":136458465783626606}],[64,{"iota_amount":137424863545067882,"pool_token_amount":136458466000488595}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":137226744346358137,"pool_token_amount":136457270916167311}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":137147067434472997,"pool_token_amount":136456998121301762}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":137127220941503317,"pool_token_amount":136457000918202124}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":137028423748931730,"pool_token_amount":136457551057041109}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":136988519637787407,"pool_token_amount":136457557620659479}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":136948199951125878,"pool_token_amount":136457468949489798}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":136907421409009929,"pool_token_amount":136457246144819479}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":111830157316270752,"pool_token_amount":111531576637886176}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80038347680691165,"pool_token_amount":80001732175825940}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019059452971536,"pool_token_amount":80000435085770481}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000102695557,"pool_token_amount":80000000002053897}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":80000000063519457,"pool_token_amount":80000000001270376}],[17,{"iota_amount":80000000049632057,"pool_token_amount":80000000000992630}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002203900,"pool_token_amount":80000000000044070}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840600,"pool_token_amount":80000000000036807}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":80000000001754400,"pool_token_amount":80000000000035087}]],"SpartanLabs":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":27547245658401028,"pool_token_amount":27020192382591089}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":27532661014212797,"pool_token_amount":27018628855789878}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27508749939811092,"pool_token_amount":27017912889657129}],[154,{"iota_amount":27505782726472684,"pool_token_amount":27018277353467790}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27501905792608402,"pool_token_amount":27017748320275127}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27481169500422208,"pool_token_amount":27017056075393402}],[146,{"iota_amount":27477315530442539,"pool_token_amount":27016462622509627}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27464311563245603,"pool_token_amount":27016462435563941}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":27460204513163930,"pool_token_amount":27018817863562819}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":27446182802874414,"pool_token_amount":27017824936923604}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27421822133932454,"pool_token_amount":27016257663738559}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":27418407863150306,"pool_token_amount":27016100634346458}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":27409285739967418,"pool_token_amount":27016723472926903}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27405671805713572,"pool_token_amount":27016365702591967}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27387469390511232,"pool_token_amount":27014442737013479}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27378109384114359,"pool_token_amount":27014825460864941}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":27371789843658988,"pool_token_amount":27015001822001450}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27357285047911629,"pool_token_amount":27013515285971014}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":27336617859745926,"pool_token_amount":27011394293353707}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":27294864112060036,"pool_token_amount":27010060577625171}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27290799983694214,"pool_token_amount":27009578842830244}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27282655382139453,"pool_token_amount":27008591615361461}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27274582318646288,"pool_token_amount":27007646484437601}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27268975428160200,"pool_token_amount":27009133863609751}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27245903917334874,"pool_token_amount":27007272553179504}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27232258655720258,"pool_token_amount":27004421819445083}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27229667631986378,"pool_token_amount":27005346382791867}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":27221185127402517,"pool_token_amount":27003917039132501}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":27214364252608477,"pool_token_amount":27004233853416931}],[72,{"iota_amount":27209597423387684,"pool_token_amount":27003191624293027}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27190714086188016,"pool_token_amount":27003090182651467}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27178984156569400,"pool_token_amount":27002513283122167}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":27166831235553724,"pool_token_amount":27000933047429690}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27164074351931425,"pool_token_amount":27001693348214883}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27155969779147988,"pool_token_amount":27000636450881459}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27141737389968610,"pool_token_amount":26996987571772358}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27137624127045613,"pool_token_amount":26996495737286529}],[53,{"iota_amount":27133116272237097,"pool_token_amount":26995611815540298}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":27114040991149295,"pool_token_amount":27005441304503609}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27105504296605873,"pool_token_amount":27004146689362894}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27076433352218195,"pool_token_amount":27000639615277626}],[35,{"iota_amount":27071987531276152,"pool_token_amount":27000107589839493}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004670735991001,"pool_token_amount":20000096332686800}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":20000000000539900,"pool_token_amount":20000000000010790}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000445300,"pool_token_amount":20000000000008902}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"StakeWithUs":[[167,{"iota_amount":35729691752167733,"pool_token_amount":34991691318695007}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35710596199938210,"pool_token_amount":34990523462019824}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35729749900219522,"pool_token_amount":35017966599669879}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35722739167915772,"pool_token_amount":35019869853643073}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35711566205132919,"pool_token_amount":35017878638762219}],[156,{"iota_amount":35706755087392962,"pool_token_amount":35017642755209708}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":35687267870579759,"pool_token_amount":35016463469652879}],[149,{"iota_amount":35672796306242455,"pool_token_amount":35015720056891954}],[148,{"iota_amount":35667984146630429,"pool_token_amount":35015483880345763}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35663165136334697,"pool_token_amount":35015243606678772}],[145,{"iota_amount":35653627783207483,"pool_token_amount":35014771657611839}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35642207505964691,"pool_token_amount":35017034788668077}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":35618425028988118,"pool_token_amount":35015869493881207}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":35600150042070455,"pool_token_amount":35015621205025248}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":35595331603064336,"pool_token_amount":35015384238298189}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":35585795077487345,"pool_token_amount":35014916625891468}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":35581020250208696,"pool_token_amount":35014632171605876}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":35565472042788744,"pool_token_amount":35016973847483581}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":35557726135716247,"pool_token_amount":35013758417460810}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35553035676713734,"pool_token_amount":35013550971686829}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":35548319220400500,"pool_token_amount":35013318726791130}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":35524592625992763,"pool_token_amount":35012097782546485}],[116,{"iota_amount":35519779409223898,"pool_token_amount":35011860593223620}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35514965855852814,"pool_token_amount":35011623356749379}],[114,{"iota_amount":35510152433589531,"pool_token_amount":35011386096196211}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":35507548640686428,"pool_token_amount":35013328026376711}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35397607283699603,"pool_token_amount":35009662524794529}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35324647948890487,"pool_token_amount":35001988393115768}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":35305378766695231,"pool_token_amount":34997650448005621}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":35294917965829435,"pool_token_amount":34997119688106960}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":35283939368822334,"pool_token_amount":34996598250727260}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":35272791849375334,"pool_token_amount":34996015875520173}],[69,{"iota_amount":35267210201203436,"pool_token_amount":34995717964211492}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35239709615169573,"pool_token_amount":34994304822950869}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":35202983694291402,"pool_token_amount":34992328606109193}],[56,{"iota_amount":35197759692351585,"pool_token_amount":34992068969029724}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":35170267394573663,"pool_token_amount":34989825177688468}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35154238340628952,"pool_token_amount":34989004090657681}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":35140039443149765,"pool_token_amount":34995047835089040}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":35111763311607658,"pool_token_amount":34992334126500570}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35077642794641073,"pool_token_amount":34990565161358095}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35071178517617621,"pool_token_amount":34989710025511554}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":35053441786161812,"pool_token_amount":34988875404574428}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":25035417722297042,"pool_token_amount":25002574712649377}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000644154}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":25000000015495364,"pool_token_amount":25000000000309897}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000011122}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}]],"Staked":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":36949601339442825,"pool_token_amount":36157498663574861}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":36923039168832917,"pool_token_amount":36154666241495964}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":36682971076521228,"pool_token_amount":35957953831799029}],[152,{"iota_amount":36672313744059013,"pool_token_amount":35952226117725788}],[149,{"iota_amount":36623048972448322,"pool_token_amount":35918086638863669}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":36610561383988330,"pool_token_amount":35920010567189873}],[145,{"iota_amount":36605641592825814,"pool_token_amount":35920009587425340}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":36538889799577763,"pool_token_amount":35864155975761380}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":36506335985090428,"pool_token_amount":35861161371696829}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":36436740216906980,"pool_token_amount":35850289673319021}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":35994589679477176,"pool_token_amount":35434218051395270}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":36004792287292992,"pool_token_amount":35449005665954031}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35979975845323287,"pool_token_amount":35429314404940052}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35973962972015437,"pool_token_amount":35428137469376119}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35948147390913741,"pool_token_amount":35416940650428408}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35828817005253989,"pool_token_amount":35338824908677144}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35826590474930167,"pool_token_amount":35347454059997940}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35821168983204186,"pool_token_amount":35347604405296427}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":35803432143033672,"pool_token_amount":35341096820929709}],[101,{"iota_amount":35797899811889914,"pool_token_amount":35341090569486946}],[100,{"iota_amount":35792403004430765,"pool_token_amount":35341102451276759}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":35675525676224536,"pool_token_amount":35310632243800751}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":35661991272880647,"pool_token_amount":35307821705575196}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35652407078778878,"pool_token_amount":35303623840096673}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":35601388196022417,"pool_token_amount":35300808583581360}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":35589982575904881,"pool_token_amount":35300301212394958}],[69,{"iota_amount":35384470054329079,"pool_token_amount":35101865277351566}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":35381295957482109,"pool_token_amount":35114928346295341}],[65,{"iota_amount":35376557559410719,"pool_token_amount":35115630269030643}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":35358029061210431,"pool_token_amount":35102427674138110}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":35340820856234910,"pool_token_amount":35100914023964529}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35313765423063737,"pool_token_amount":35084431436784669}],[57,{"iota_amount":35286280538236279,"pool_token_amount":35067513096334982}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":35253811855045489,"pool_token_amount":35061332420217571}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":35246366328619940,"pool_token_amount":35059126921411452}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35186469337314982,"pool_token_amount":35041145731854890}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35180236913437407,"pool_token_amount":35040145761593312}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":35191026240440461,"pool_token_amount":35061527793948450}],[39,{"iota_amount":35182345110274014,"pool_token_amount":35058196225490404}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":35177013853902416,"pool_token_amount":35058313023837521}],[37,{"iota_amount":35171316973611639,"pool_token_amount":35057962139031474}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":35165771071166302,"pool_token_amount":35057887765722777}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35126902103848439,"pool_token_amount":35036297323031852}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35106194827453728,"pool_token_amount":35045240623781731}],[27,{"iota_amount":35103941465434498,"pool_token_amount":35049411290733502}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000032208364,"pool_token_amount":25000000000644154}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}]],"Stakely":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27762804674573226,"pool_token_amount":27199200600475944}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27743098486923114,"pool_token_amount":27196775892784810}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":27732469848657900,"pool_token_amount":27196718482713363}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[150,{"iota_amount":27710201021493154,"pool_token_amount":27195612998543851}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[145,{"iota_amount":27683882992364250,"pool_token_amount":27187082002344788}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":27629374598619965,"pool_token_amount":27185523459846181}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27625655415303010,"pool_token_amount":27185338617921749}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27603424425082252,"pool_token_amount":27187762942494988}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27596067377921217,"pool_token_amount":27187462435319588}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":27585533103239935,"pool_token_amount":27187503467571946}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":27556453630039662,"pool_token_amount":27187027624947083}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":27535936260173896,"pool_token_amount":27194598631996849}],[99,{"iota_amount":27511267383932034,"pool_token_amount":27182188529984450}],[98,{"iota_amount":27507792550651420,"pool_token_amount":27182732270956926}],[97,{"iota_amount":27503581441579801,"pool_token_amount":27182518659522367}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27461600250504285,"pool_token_amount":27179562099774593}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27434297111797914,"pool_token_amount":27179577440624487}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27421175524007266,"pool_token_amount":27181964004608183}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27402305571673416,"pool_token_amount":27182936076681587}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":27397994565696040,"pool_token_amount":27182745919002039}],[69,{"iota_amount":27244236581933108,"pool_token_amount":27034283113713075}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27235203391400133,"pool_token_amount":27033490810244142}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27225992980288273,"pool_token_amount":27036295924553270}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27220480473093076,"pool_token_amount":27034596346580647}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27209635066632573,"pool_token_amount":27035150867820853}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27196945826155067,"pool_token_amount":27030095957215174}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27167878738824695,"pool_token_amount":27024191738104784}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27162941571490818,"pool_token_amount":27023166485975317}],[50,{"iota_amount":27156202563211104,"pool_token_amount":27020348420524822}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":27153439548901120,"pool_token_amount":27021486381704188}],[47,{"iota_amount":27145158353963145,"pool_token_amount":27021020780682951}],[46,{"iota_amount":27142588929943663,"pool_token_amount":27022351914550034}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27129697034533784,"pool_token_amount":27021183828583049}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":27116594222406354,"pool_token_amount":27015915627013999}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[40,{"iota_amount":27111277814971973,"pool_token_amount":27014511243154113}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27100623872868049,"pool_token_amount":27011682582791398}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27092866808465014,"pool_token_amount":27011973927133025}],[35,{"iota_amount":27087770359920184,"pool_token_amount":27011103729559939}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27068074938619894,"pool_token_amount":27004424290727303}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":27062932318606154,"pool_token_amount":27003613420603570}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":20023317397249717,"pool_token_amount":20004881001927239}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":20000000015316901,"pool_token_amount":20000000000306326}],[16,{"iota_amount":20000000007017893,"pool_token_amount":20000000000140348}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000475400,"pool_token_amount":20000000000009502}],[12,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Staketab":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":27555917617214541,"pool_token_amount":27028831210170886}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":27537897281789926,"pool_token_amount":27027168813617822}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27533977134068662,"pool_token_amount":27026597389419518}],[156,{"iota_amount":27526407480514259,"pool_token_amount":27025719869659726}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27522714519445620,"pool_token_amount":27025371253632667}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":27515099203721423,"pool_token_amount":27024449409796747}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":27477392712972315,"pool_token_amount":27010276147430573}],[145,{"iota_amount":27473030428918954,"pool_token_amount":27009185150604109}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":27451174599059268,"pool_token_amount":27006870426367889}],[138,{"iota_amount":27447533288380145,"pool_token_amount":27006488342781624}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27414922994538640,"pool_token_amount":27003207585342578}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27390404246196049,"pool_token_amount":27001477710451867}],[120,{"iota_amount":27382011107480852,"pool_token_amount":26999611625474993}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":27374775646369830,"pool_token_amount":26998885777949133}],[117,{"iota_amount":91735889242077333,"pool_token_amount":39881683429017994}],[116,{"iota_amount":27367385078862758,"pool_token_amount":26998005390096765}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":27362481215864858,"pool_token_amount":26996373013833813}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":27344896545444415,"pool_token_amount":26998618211333503}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27340882941424173,"pool_token_amount":26998221934802815}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[102,{"iota_amount":27315809573589787,"pool_token_amount":26995752363268394}],[101,{"iota_amount":27311666811173158,"pool_token_amount":26995342938273299}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":27289054943396904,"pool_token_amount":26998832561499814}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27284989813072721,"pool_token_amount":26998430370946556}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":27264745509457303,"pool_token_amount":26996432113353037}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27229625151539937,"pool_token_amount":26994054599636048}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":27226239705397537,"pool_token_amount":26997842193840795}],[74,{"iota_amount":27215053407122431,"pool_token_amount":26997461837242754}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":27189472265138274,"pool_token_amount":26994710683274801}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":27175727505458259,"pool_token_amount":27010559565408948}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":27158903687748346,"pool_token_amount":27008153575345101}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27146138918396074,"pool_token_amount":27006402012356652}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27142024176289873,"pool_token_amount":27005990865758226}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27125523738314235,"pool_token_amount":27004302272438978}],[45,{"iota_amount":27121971079142759,"pool_token_amount":27011820191091292}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27113731248697735,"pool_token_amount":27010985160960882}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":27092555696710581,"pool_token_amount":27000950067280571}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":27080108363178739,"pool_token_amount":26999717228605699}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":27071387534543246,"pool_token_amount":26998818996204802}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27058031309906146,"pool_token_amount":26997778994559239}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":27039340575876393,"pool_token_amount":26995715327430054}],[27,{"iota_amount":27034342941288914,"pool_token_amount":26995222681248733}],[25,{"iota_amount":20025411726048901,"pool_token_amount":20003828758669413}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20010986044009000,"pool_token_amount":20001825795265510}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004689113804701,"pool_token_amount":20000114706287817}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":20000000015327401,"pool_token_amount":20000000000306536}],[17,{"iota_amount":20000000012338901,"pool_token_amount":20000000000246767}],[16,{"iota_amount":20000000007028393,"pool_token_amount":20000000000140558}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000455800,"pool_token_amount":20000000000009112}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000442900,"pool_token_amount":20000000000008856}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Stakin":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27575508880189594,"pool_token_amount":27061004051953791}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":27566501426013069,"pool_token_amount":27058716161008865}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27549988859924576,"pool_token_amount":27052335579276793}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":27517424711541047,"pool_token_amount":27043300299443701}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":27513103678217411,"pool_token_amount":27042336575162531}],[146,{"iota_amount":27509371889643755,"pool_token_amount":27041952089102544}],[145,{"iota_amount":27505755239687262,"pool_token_amount":27041594050593172}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27495399421682722,"pool_token_amount":27040999738079456}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":27486936528327654,"pool_token_amount":27039069271433442}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27476093400938358,"pool_token_amount":27038002498260332}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27468850726419136,"pool_token_amount":27037276654950700}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":27461622674899420,"pool_token_amount":27036563575885117}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27458100601288283,"pool_token_amount":27036298132288842}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27454555680072654,"pool_token_amount":27036010586084730}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":27446984131365825,"pool_token_amount":27034963386775665}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27425068856232969,"pool_token_amount":27032594179359398}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27421456251278487,"pool_token_amount":27032238088340317}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":27399261666862837,"pool_token_amount":27042396941149216}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":27391978430506321,"pool_token_amount":27041623884697743}],[109,{"iota_amount":27387963095929566,"pool_token_amount":27041226509208606}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27386231461853520,"pool_token_amount":27088072831253007}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27382043837888817,"pool_token_amount":27087658626962945}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":27365280853188209,"pool_token_amount":27085755709646799}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27302635193000921,"pool_token_amount":27030956155841233}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":27278821950185709,"pool_token_amount":27025323830464924}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":27278808081704576,"pool_token_amount":27032457683621908}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27271579123086174,"pool_token_amount":27032639620305906}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27267571735751802,"pool_token_amount":27032241411265673}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27255562199026961,"pool_token_amount":27031047987911888}],[75,{"iota_amount":27251680474962789,"pool_token_amount":27030769617816815}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":27239131789191871,"pool_token_amount":27029336014489962}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":27234080908482857,"pool_token_amount":27035743536733032}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":27229746787207876,"pool_token_amount":27035313281007594}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27221062329323628,"pool_token_amount":27034436320075600}],[65,{"iota_amount":27216728157947731,"pool_token_amount":27034005874416138}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":27212732378521767,"pool_token_amount":27033613453075020}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":27208731321326570,"pool_token_amount":27033215980915191}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":27192024047369767,"pool_token_amount":27030926846579831}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27159578151927257,"pool_token_amount":27020346281089708}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":27143820725663105,"pool_token_amount":27026768106695547}],[46,{"iota_amount":27139700173170968,"pool_token_amount":27026350211342309}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27130375940233374,"pool_token_amount":27028121227533376}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":27120986001695752,"pool_token_amount":27026141234095889}],[40,{"iota_amount":27115541647140552,"pool_token_amount":27024404158250367}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":20023961849970848,"pool_token_amount":20006654446950867}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":20004728736001501,"pool_token_amount":20000154319424337}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":20000000012338901,"pool_token_amount":20000000000246767}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Staking Defense League":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":41589390909004724,"pool_token_amount":40779872762468142}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":41573059098495481,"pool_token_amount":40778271180951176}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":41515607426649619,"pool_token_amount":40772179324043950}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":41487423806768891,"pool_token_amount":40769405448992558}],[145,{"iota_amount":41481802344267042,"pool_token_amount":40768853031124541}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":41484241299934774,"pool_token_amount":40786164747535722}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":41428034837938967,"pool_token_amount":40780636542251781}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":41416789910967757,"pool_token_amount":40779529553409871}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":41411163904123583,"pool_token_amount":40778975608609681}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":41405538219391962,"pool_token_amount":40778421627807354}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":41377441713567337,"pool_token_amount":40775653852953090}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":41371822106142396,"pool_token_amount":40775100064840633}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35498196780249327,"pool_token_amount":34994650837725555}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35488768671482907,"pool_token_amount":34993721344439502}],[117,{"iota_amount":35484055533906847,"pool_token_amount":34993256604889595}],[116,{"iota_amount":35479429467909791,"pool_token_amount":34992877513166796}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35451096837039328,"pool_token_amount":34990037873131755}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35440508063895202,"pool_token_amount":34988896763678047}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":45415904083807471,"pool_token_amount":44857743912401435}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[100,{"iota_amount":45380081969167486,"pool_token_amount":44854211843004424}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":45338035680086889,"pool_token_amount":44849998432518196}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":45331034622984296,"pool_token_amount":44849305862197779}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":45317274901866990,"pool_token_amount":44847946203968320}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":45283031296197958,"pool_token_amount":44844748120281644}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":45254682112820120,"pool_token_amount":44841291120258393}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":45219871280311440,"pool_token_amount":44837752160245628}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":45194810025728462,"pool_token_amount":44850204563661523}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":45173126486028363,"pool_token_amount":44848047074663042}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":45151288109954348,"pool_token_amount":44845728488899256}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":45123822311418323,"pool_token_amount":44842986528506672}],[60,{"iota_amount":45116923277931781,"pool_token_amount":44842294658088747}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":45103522846433733,"pool_token_amount":44841302753665685}],[56,{"iota_amount":45089756271097682,"pool_token_amount":44839947494130659}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":45062502457404793,"pool_token_amount":44837216996102204}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":45059691790172764,"pool_token_amount":44852637337875491}],[48,{"iota_amount":45052799597026860,"pool_token_amount":44851950389732427}],[47,{"iota_amount":45046020568717871,"pool_token_amount":44851275509046702}],[45,{"iota_amount":45032357926560628,"pool_token_amount":44849821402930483}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":45025461810379289,"pool_token_amount":44849129208505913}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":45004051758373241,"pool_token_amount":44846534484016339}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":44982996686817694,"pool_token_amount":44844395232437029}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":35082384491653355,"pool_token_amount":34994678797247816}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35070561943877156,"pool_token_amount":34993474331145170}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":25000000019836964,"pool_token_amount":25000000001983684}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000882626}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000057775}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000057775}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000057775}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":25000000000572400,"pool_token_amount":25000000000057236}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000055618}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Staking Facilities":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":65596897858751769,"pool_token_amount":64288423150902756}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[145,{"iota_amount":65654257542050518,"pool_token_amount":64492508287812106}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":65635634723391625,"pool_token_amount":64490707234424425}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":65617580477757339,"pool_token_amount":64489456367395709}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":65560867847675182,"pool_token_amount":64483237982639866}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":65532936698511152,"pool_token_amount":64480542701123361}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":65524005328117875,"pool_token_amount":64480019135612364}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":65495290562874055,"pool_token_amount":64476383177884223}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":65705961139311638,"pool_token_amount":64716897002302479}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":65697031663730445,"pool_token_amount":64716369298175783}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":65678932368526141,"pool_token_amount":64715078317126431}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":65651952912925215,"pool_token_amount":64713297859251826}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":65583790492388076,"pool_token_amount":64712270280210802}],[109,{"iota_amount":65575653514262477,"pool_token_amount":64713446353294326}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":65554503871618459,"pool_token_amount":64711087491542211}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[97,{"iota_amount":65450807655223615,"pool_token_amount":64702506716907789}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35435341382817915,"pool_token_amount":35035162493583824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":35424463713391868,"pool_token_amount":35034292449189658}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35419043539939188,"pool_token_amount":35033863610358739}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":35388894543311478,"pool_token_amount":35028303307286196}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":35383510103052327,"pool_token_amount":35027876940787653}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":35378127588205647,"pool_token_amount":35027450667108266}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35372768949161209,"pool_token_amount":35027024790555343}],[84,{"iota_amount":35367426593697774,"pool_token_amount":35026601591703889}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35345935105873218,"pool_token_amount":35024888494730500}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35340687563593972,"pool_token_amount":35024558370610554}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":35318247425999665,"pool_token_amount":35021778767447313}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35295552173327280,"pool_token_amount":35019247971593362}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":35284324898515687,"pool_token_amount":35018257434340198}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":35267854799123045,"pool_token_amount":35017131651532658}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":35235121987392150,"pool_token_amount":35014071918194498}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35229787854173018,"pool_token_amount":35013647864659326}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35207448553176079,"pool_token_amount":35010956836127238}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":35201359725602092,"pool_token_amount":35009782639848292}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35169387207701523,"pool_token_amount":35007271886167993}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35136910938706813,"pool_token_amount":35004254822217761}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":35131153660825246,"pool_token_amount":35003409208225707}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":35098604898359189,"pool_token_amount":35001473583976443}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35087204785469941,"pool_token_amount":35000916212725753}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35081064667562852,"pool_token_amount":35000207790819527}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":25007401238205152,"pool_token_amount":25001628428764371}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":25000000015495364,"pool_token_amount":25000000000309897}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":25000000000691200,"pool_token_amount":25000000000013816}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}],[0,{"iota_amount":0,"pool_token_amount":0}]],"StakingCabin":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":153253153410074065,"pool_token_amount":150056789711924972}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":153232905650128209,"pool_token_amount":150055996693250359}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":153212659715077485,"pool_token_amount":150055203645477580}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":153087263235998544,"pool_token_amount":150048857899683080}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":153068686571206791,"pool_token_amount":150050271441464400}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":153031485245977317,"pool_token_amount":150072683686244135}],[150,{"iota_amount":152989366284571285,"pool_token_amount":150070638993492354}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":152931118110432845,"pool_token_amount":150072236623617762}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":152524593634717832,"pool_token_amount":150062582648464462}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":152462713432141938,"pool_token_amount":150059983352337341}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":152448679022560641,"pool_token_amount":150065606798658195}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":152290389708022856,"pool_token_amount":150065620752103073}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":152155917411270170,"pool_token_amount":150052562350534343}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":152110750512204785,"pool_token_amount":150051612372469433}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":152039183752302053,"pool_token_amount":150048797635177739}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":152015212491910670,"pool_token_amount":150047853239976803}],[102,{"iota_amount":151991388266654612,"pool_token_amount":150046914504113697}],[101,{"iota_amount":151967682474336265,"pool_token_amount":150045978400469060}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":151858670280952878,"pool_token_amount":150049942044590428}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":151718465648767935,"pool_token_amount":150043325924071795}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":151625780726125033,"pool_token_amount":150060748897046474}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":151593128828421776,"pool_token_amount":150071898370452002}],[82,{"iota_amount":151570034221471092,"pool_token_amount":150070719944872053}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":151546919523532999,"pool_token_amount":150069519351685532}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":151453147635780648,"pool_token_amount":150064119405585092}],[76,{"iota_amount":151429891612838617,"pool_token_amount":150062744927155515}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":151415117448487144,"pool_token_amount":150069780704368660}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":151369196708294556,"pool_token_amount":150068260901878185}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":151320732046712979,"pool_token_amount":150065908629023405}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":211342511247333584,"pool_token_amount":209825360086523094}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":211158031429948576,"pool_token_amount":209793669193123472}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":211031151005243615,"pool_token_amount":209819943500254598}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":210952300310995334,"pool_token_amount":209802869977476433}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":210759081778546902,"pool_token_amount":209794802776820019}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":210694239236732270,"pool_token_amount":209791638127519084}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":210662116757723265,"pool_token_amount":209790354434862410}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":150549849069866022,"pool_token_amount":150016029618847034}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":170517866660301934,"pool_token_amount":169994363346912355}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":170400864064812041,"pool_token_amount":169988919273662947}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":200183190770187480,"pool_token_amount":199955186355126146}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":150108379972026044,"pool_token_amount":150004272677911561}],[22,{"iota_amount":150071728832923326,"pool_token_amount":150002623246420502}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":150036202666533445,"pool_token_amount":150001458813436172}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":150000000116171591,"pool_token_amount":150000000002323420}],[17,{"iota_amount":150000000093514591,"pool_token_amount":150000000001870281}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":150000000004141300,"pool_token_amount":150000000000082818}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":150000000003652300,"pool_token_amount":150000000000073040}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"Stardust Staking":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":35778494725565083,"pool_token_amount":35073149779274828}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35759755462514268,"pool_token_amount":35071496197434013}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":35745972448646927,"pool_token_amount":35070682610666804}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":35731538428723176,"pool_token_amount":35069407932593938}],[154,{"iota_amount":35726726596379057,"pool_token_amount":35068982892250647}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35721685102591668,"pool_token_amount":35068332555397017}],[152,{"iota_amount":35716826985735807,"pool_token_amount":35067862218116071}],[149,{"iota_amount":35703114359368386,"pool_token_amount":35067296656174513}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35678913876754869,"pool_token_amount":35065049402407726}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":38977559176067445,"pool_token_amount":38335729575021223}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":38966911873477944,"pool_token_amount":38334787037190842}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":38914850412939180,"pool_token_amount":38331203551919356}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":38898930663153034,"pool_token_amount":38329821727562882}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":38881478030281678,"pool_token_amount":38326927683648254}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":38860218949300669,"pool_token_amount":38325043117652156}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":38854900984164735,"pool_token_amount":38324568399426323}],[114,{"iota_amount":38849586163793115,"pool_token_amount":38324096594016597}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":38838927594249111,"pool_token_amount":38323125155925696}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":42151081194056583,"pool_token_amount":41596863519094964}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":42132652750213226,"pool_token_amount":41595227450356746}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":52056444453386477,"pool_token_amount":51415917397116259}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":52031729691151195,"pool_token_amount":51413721015003426}],[100,{"iota_amount":52015416176081777,"pool_token_amount":51412271933639465}],[99,{"iota_amount":52007280241252547,"pool_token_amount":51411548187929750}],[97,{"iota_amount":51991084555344837,"pool_token_amount":51410031789223495}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":51983027266398127,"pool_token_amount":51409235860654308}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":51958936992907766,"pool_token_amount":51406856366059933}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":51919136987398089,"pool_token_amount":51402544426338763}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":51872132630897834,"pool_token_amount":51397889348432529}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":51856213270542124,"pool_token_amount":51396309876980749}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":51825067250368015,"pool_token_amount":51393216482409327}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":51817176459492803,"pool_token_amount":51392336407210705}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":51809395893891385,"pool_token_amount":51391565501470854}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":51793268402749096,"pool_token_amount":51390055677054671}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":51760319291681407,"pool_token_amount":51386947841830299}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":51743680965611324,"pool_token_amount":51385325268277170}],[65,{"iota_amount":51735346020662207,"pool_token_amount":51384498373943926}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51727567726071925,"pool_token_amount":51383727491857613}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":51719863776449724,"pool_token_amount":51383031461021441}],[61,{"iota_amount":51704282609530115,"pool_token_amount":51381465274391862}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":35142602426512309,"pool_token_amount":34999549513637668}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":35137254143016319,"pool_token_amount":34999004844926209}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":35112012086131889,"pool_token_amount":34997877039897905}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":25037590623813189,"pool_token_amount":25005926672795173}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":25000000031979264,"pool_token_amount":25000000000639572}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"Swiss Staking":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":35798757682239192,"pool_token_amount":35075994939056683}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35789106773149110,"pool_token_amount":35075032892012643}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":35751864319241262,"pool_token_amount":35068622694459546}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":35742342166202585,"pool_token_amount":35067966628012298}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":35727743941586011,"pool_token_amount":35066674264145731}],[150,{"iota_amount":35722932248248373,"pool_token_amount":35066296450710245}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[147,{"iota_amount":35708522545536717,"pool_token_amount":35065191535839632}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":35679157116836484,"pool_token_amount":35062458542959119}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":35669515239420536,"pool_token_amount":35061690532118812}],[138,{"iota_amount":35664696066549928,"pool_token_amount":35061311567354765}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35645663868674448,"pool_token_amount":35060035794549354}],[133,{"iota_amount":35640752080890717,"pool_token_amount":35059564396435372}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":35616351599469710,"pool_token_amount":35057372822672378}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":35611686971684466,"pool_token_amount":35057053858144059}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":35606872490023622,"pool_token_amount":35056676526531131}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":35582121184840944,"pool_token_amount":35054118734857344}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35573577872977145,"pool_token_amount":35054429182320264}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35569270144035536,"pool_token_amount":35054548875250245}],[116,{"iota_amount":35559715110831034,"pool_token_amount":35053860423206290}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35530439437369558,"pool_token_amount":35051287188644896}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":35490505034413253,"pool_token_amount":35046643261968294}],[99,{"iota_amount":35472148057722636,"pool_token_amount":35048579051835145}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35435089732182461,"pool_token_amount":35046602393609556}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":35415836398284491,"pool_token_amount":35042191318077688}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":35406637385095450,"pool_token_amount":35042894217087270}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":35392539847304235,"pool_token_amount":35043585127873399}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35375451118227688,"pool_token_amount":35041263852424451}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35375340386446450,"pool_token_amount":35055862644462790}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":35376696482687083,"pool_token_amount":35071807296667227}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":35354535502310780,"pool_token_amount":35069806982602916}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":35328353525884868,"pool_token_amount":35059052233532652}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":35316142953283812,"pool_token_amount":35057080681604850}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35277235088840784,"pool_token_amount":35033276033511741}],[62,{"iota_amount":35272097203286878,"pool_token_amount":35033047448844481}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35256234315731302,"pool_token_amount":35031916610365508}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35226209246111928,"pool_token_amount":35032301813125300}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":35220293146133644,"pool_token_amount":35031459078482784}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35173241016600067,"pool_token_amount":35030024548813202}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[41,{"iota_amount":35162886175314225,"pool_token_amount":35029912602016803}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":35114731831469410,"pool_token_amount":35035847571516464}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35088539377562827,"pool_token_amount":35027124942569709}],[25,{"iota_amount":25048007689290837,"pool_token_amount":25018853767181175}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25042735627245832,"pool_token_amount":25025089583790887}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":25000000019248364,"pool_token_amount":25000000000384956}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":25000000000610200,"pool_token_amount":25000000000012198}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"SyncNode":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35791326818787930,"pool_token_amount":35088758289283253}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35776243126819896,"pool_token_amount":35090598739302893}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":35766825917489009,"pool_token_amount":35089675010996787}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35736860359351263,"pool_token_amount":35090017113481804}],[150,{"iota_amount":35722379705184440,"pool_token_amount":35088555353628683}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":35706517766381152,"pool_token_amount":35089997459172609}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35687053470046859,"pool_token_amount":35088085182445472}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":35682238837034242,"pool_token_amount":35087611799507039}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":35670629457807989,"pool_token_amount":35088984372269655}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":35660987617711495,"pool_token_amount":35088036736921603}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":35620312090612983,"pool_token_amount":35090867179161375}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35558092116896998,"pool_token_amount":35059369822626981}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":35548589973006855,"pool_token_amount":35058455290773873}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35541032405475837,"pool_token_amount":35059546792203036}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":35499836029678639,"pool_token_amount":35059409876526470}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35488637411291369,"pool_token_amount":35058269156714914}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":35469768370377336,"pool_token_amount":35059338835645355}],[99,{"iota_amount":35464218019281961,"pool_token_amount":35058745741526967}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":35412882376215201,"pool_token_amount":35027408075839729}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35403201373983190,"pool_token_amount":35027394685535199}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":35389441445370902,"pool_token_amount":35027926176098312}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":35384162678240767,"pool_token_amount":35027403691338491}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":35370232084560203,"pool_token_amount":35027904908125027}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35355514831869865,"pool_token_amount":35027429296280525}],[82,{"iota_amount":35352852851032402,"pool_token_amount":35029556007176974}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35336716416343841,"pool_token_amount":35027957808277853}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":35313166294708345,"pool_token_amount":35028415494033305}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":35307720342749960,"pool_token_amount":35027875290222055}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":35287509175790555,"pool_token_amount":35027675460623190}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":35234104166773319,"pool_token_amount":35027883334707887}],[56,{"iota_amount":35192353652691283,"pool_token_amount":34995819929136961}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35187099794995758,"pool_token_amount":34995270628191435}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35179632653122472,"pool_token_amount":34997396018077127}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":35164506673181211,"pool_token_amount":34996677605670439}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35153841962853990,"pool_token_amount":34995620636151989}],[47,{"iota_amount":35150107373352441,"pool_token_amount":34996682350713804}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35130572101588057,"pool_token_amount":34996352514620615}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35125218134221081,"pool_token_amount":34995802128743484}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":35115526523032189,"pool_token_amount":34995714188292690}],[39,{"iota_amount":35112118398066697,"pool_token_amount":34997202810688916}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":35064771454393029,"pool_token_amount":34997224177682950}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35046973389652898,"pool_token_amount":34990606731975758}],[26,{"iota_amount":25036780886670047,"pool_token_amount":25005151890543232}],[25,{"iota_amount":25032018195276228,"pool_token_amount":25005093653707674}],[24,{"iota_amount":25026169049945033,"pool_token_amount":25004250003880932}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":25013264464700365,"pool_token_amount":25002068628317055}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"SynergyNodes":[[167,{"iota_amount":35711973488397131,"pool_token_amount":34999579084893220}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":35703304665126911,"pool_token_amount":34999579173392202}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":35681830274195488,"pool_token_amount":34999587263939251}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":35668550012823683,"pool_token_amount":34999587329457781}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":35650720104633172,"pool_token_amount":34999466522936534}],[151,{"iota_amount":35642251017238150,"pool_token_amount":34999844670304153}],[149,{"iota_amount":35633012080680255,"pool_token_amount":34999466714899788}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":35624242641197734,"pool_token_amount":34999462158956603}],[146,{"iota_amount":35619914147116045,"pool_token_amount":34999471324332348}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":35606628758588605,"pool_token_amount":34999480921655847}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35567371036903277,"pool_token_amount":34999463940676521}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":35550201038648822,"pool_token_amount":34999836387954911}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":35545479211370173,"pool_token_amount":34999464489192044}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":35510760786316251,"pool_token_amount":34999461996199143}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[118,{"iota_amount":35498127188891416,"pool_token_amount":34999833863114390}],[117,{"iota_amount":35493414051315356,"pool_token_amount":34999462104490310}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":35480383466141681,"pool_token_amount":34999440032278676}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":35476047053637811,"pool_token_amount":34999440089795714}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35448532328213831,"pool_token_amount":34999501848747979}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35436326440540295,"pool_token_amount":34997409392708235}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35431327734612563,"pool_token_amount":34997429488963574}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[99,{"iota_amount":35406391217838728,"pool_token_amount":34997417936869707}],[98,{"iota_amount":35397636561402248,"pool_token_amount":34993658705474278}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":35348671269283555,"pool_token_amount":34993821233363631}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35304576111031336,"pool_token_amount":34993336108694415}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":35281033541493148,"pool_token_amount":34993822729905847}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":35245453304624334,"pool_token_amount":34993828851906497}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":35235610614189585,"pool_token_amount":34994207663716338}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35204096547790040,"pool_token_amount":34991545896486089}],[57,{"iota_amount":35194485465483141,"pool_token_amount":34991546050149754}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":35175051503562695,"pool_token_amount":34991541281078344}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35156694455532143,"pool_token_amount":34992810551498211}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":35130331205959595,"pool_token_amount":34990994085135102}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":35125518757533072,"pool_token_amount":34991089049456378}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35120129616885749,"pool_token_amount":34990609983115475}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":35105248694044705,"pool_token_amount":34990556412617032}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35074278565517779,"pool_token_amount":34990910392585385}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":35064233564442748,"pool_token_amount":34991714388408580}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":35039628838964770,"pool_token_amount":34989635842359541}],[26,{"iota_amount":35034205124962368,"pool_token_amount":34990615288737785}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25017678795897347,"pool_token_amount":25001650820581813}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":25006004474400779,"pool_token_amount":25000603107139777}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":25000000015495364,"pool_token_amount":25000000001549526}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000882626}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000067493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":25000000000577800,"pool_token_amount":25000000000057775}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":25000000000577800,"pool_token_amount":25000000000057775}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000056697}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":25000000000567000,"pool_token_amount":25000000000056697}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":25000000000556200,"pool_token_amount":25000000000055618}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"TDMTech":[[167,{"iota_amount":27589557383739965,"pool_token_amount":27006016284351285}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":27575115492280906,"pool_token_amount":27005726784817025}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":27564294123755708,"pool_token_amount":27005514798228952}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":27539946807910348,"pool_token_amount":27010152010554934}],[151,{"iota_amount":27536237639530052,"pool_token_amount":27010079253818621}],[149,{"iota_amount":27525953208861926,"pool_token_amount":27007122425584929}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":27512311478767397,"pool_token_amount":27004442229950841}],[145,{"iota_amount":27508697681193527,"pool_token_amount":27004371287515646}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27496923080337509,"pool_token_amount":27003235797564622}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27477762695392705,"pool_token_amount":27001805026345815}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27470551036770165,"pool_token_amount":27001678931973145}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":27462481065649381,"pool_token_amount":27011158301081466}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27427590861707608,"pool_token_amount":27001223477261830}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27423978256753126,"pool_token_amount":27001152347846300}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27416475289877823,"pool_token_amount":27000733940396040}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27390474461360573,"pool_token_amount":26999517966155011}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":27383304381562531,"pool_token_amount":26999425711441778}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":27375678335532911,"pool_token_amount":26999275317470334}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27367529586153592,"pool_token_amount":26999104905488694}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27350740082362819,"pool_token_amount":26998776465634339}],[102,{"iota_amount":27346461613600206,"pool_token_amount":26998692964694853}],[99,{"iota_amount":27333838922544972,"pool_token_amount":26998448545073645}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27321426128460210,"pool_token_amount":26998203300021873}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":27313049568616745,"pool_token_amount":26998037736128407}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":27308873523706875,"pool_token_amount":26997957120788517}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27292673832160874,"pool_token_amount":26997647480524988}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27284595850068398,"pool_token_amount":26997487654799246}],[86,{"iota_amount":27280558963827675,"pool_token_amount":26997407766244965}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":27260240398843856,"pool_token_amount":26996739820062974}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":27255920954392158,"pool_token_amount":26996566918709735}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27247975512134885,"pool_token_amount":26996471081178388}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":27333689366742490,"pool_token_amount":27096949858228020}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":27312562214718690,"pool_token_amount":27096524044523712}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27303694024185715,"pool_token_amount":27096153620579071}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":27299360035559461,"pool_token_amount":27096067599671703}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":27282973201066937,"pool_token_amount":27095693575134032}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":27274953333869003,"pool_token_amount":27095517721445269}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27048393710135736,"pool_token_amount":26992886488521080}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":27027576229189627,"pool_token_amount":26991373615238473}],[24,{"iota_amount":20018898351260217,"pool_token_amount":20000464418682403}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":20000000000485900,"pool_token_amount":20000000000009712}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000455800,"pool_token_amount":20000000000009112}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000442900,"pool_token_amount":20000000000008856}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000438600,"pool_token_amount":20000000000008771}]],"TPT":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":117499746240642406,"pool_token_amount":115058061432529879}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":117484210584130362,"pool_token_amount":115057300791148522}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":117468671650545907,"pool_token_amount":115056539893710020}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":117453135002968465,"pool_token_amount":115055779012629097}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":117430883382578058,"pool_token_amount":115062883072540807}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":117415345688112094,"pool_token_amount":115062121853356406}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":117399305442574297,"pool_token_amount":115061335914501112}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":117335153965459233,"pool_token_amount":115058191604663668}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":117137973083202030,"pool_token_amount":115057947022319271}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":117090423281810635,"pool_token_amount":115055611447696023}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":117063450766057520,"pool_token_amount":115058735109841484}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":117031728290126876,"pool_token_amount":115057176046966478}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":117015871865292162,"pool_token_amount":115056396601636746}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":116972253781016022,"pool_token_amount":115057956389510601}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":116834124174893672,"pool_token_amount":115054905638482125}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":116711836485066823,"pool_token_amount":115052984218794069}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":116696783380523935,"pool_token_amount":115052984344838624}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":116666476520806176,"pool_token_amount":115052787630317866}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":116654188101776994,"pool_token_amount":115055520585119737}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":116618954805710732,"pool_token_amount":115053782937161860}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":116601231850585116,"pool_token_amount":115052912442796714}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":116496940114595933,"pool_token_amount":115052902093852188}],[98,{"iota_amount":116445324378069792,"pool_token_amount":115052894177834511}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":116376908195592509,"pool_token_amount":115052876149089546}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":116359953317159169,"pool_token_amount":115052870792566143}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":116295878377112979,"pool_token_amount":115055925357985270}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":116243132354310343,"pool_token_amount":115053398777954246}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":116096545293690412,"pool_token_amount":114957754101397365}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":116063379028252635,"pool_token_amount":114957787414592485}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":115996326837235975,"pool_token_amount":114957738593110886}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":115964794374914474,"pool_token_amount":114959343193170555}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":115814786520985803,"pool_token_amount":114948601345629952}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":115796228159445006,"pool_token_amount":114947680367499749}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":115713975562439083,"pool_token_amount":114949352743909091}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":115696510155077672,"pool_token_amount":114948472975594869}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":115608725706055891,"pool_token_amount":114943705785601381}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":115556233467574842,"pool_token_amount":114941279445508607}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":115325914401329057,"pool_token_amount":114946822613603152}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":115291139864358217,"pool_token_amount":114946786358335707}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":105257622392237026,"pool_token_amount":104976716952716637}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":105224512521195147,"pool_token_amount":104977642895881384}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":80057756688790512,"pool_token_amount":80002837191788368}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":80000000062001508,"pool_token_amount":80000000001240018}],[17,{"iota_amount":80000000049908508,"pool_token_amount":80000000000998159}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[0,{"iota_amount":0,"pool_token_amount":0}]],"TestnetPride":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":177178709111745073,"pool_token_amount":173413292207400062}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":177131916228080118,"pool_token_amount":173412031848405560}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":177082689656313381,"pool_token_amount":173408384664569309}],[161,{"iota_amount":177059361007521881,"pool_token_amount":173407699326354920}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":177011047893843814,"pool_token_amount":173405428359475633}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":176888633746643387,"pool_token_amount":173399998093165993}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":176864346361206767,"pool_token_amount":173399067833898533}],[151,{"iota_amount":176816389275148742,"pool_token_amount":173398002873527725}],[149,{"iota_amount":176698738437162807,"pool_token_amount":173328400086966604}],[148,{"iota_amount":176674771194357695,"pool_token_amount":173327688408663644}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":176656954633652387,"pool_token_amount":173401225355031251}],[143,{"iota_amount":176631798490337802,"pool_token_amount":173399261018362977}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":176465802758189163,"pool_token_amount":173395136475029286}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":176287522439523524,"pool_token_amount":173379169953361251}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":176190096547649618,"pool_token_amount":173374131090885463}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":176141474241278185,"pool_token_amount":173371680334419857}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":176069648916780400,"pool_token_amount":173369087132984374}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":175952549873027836,"pool_token_amount":173367577802077591}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":175678904178362112,"pool_token_amount":173288181993736959}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":175567985049971171,"pool_token_amount":173284378379731034}],[102,{"iota_amount":175540458657775204,"pool_token_amount":173283564286315090}],[98,{"iota_amount":175430933344871918,"pool_token_amount":173280025226665064}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":175377163391528304,"pool_token_amount":173278817199809780}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":175350113598410558,"pool_token_amount":173278015402677193}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":175058436456472454,"pool_token_amount":173270106952862389}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":174978771924513301,"pool_token_amount":173267015967534966}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":174908907485673130,"pool_token_amount":173274461030400900}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":174830164618878786,"pool_token_amount":173272079415921334}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":234721706499276583,"pool_token_amount":233032101986549935}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":234614903470417633,"pool_token_amount":233028171819224059}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":234470351423429228,"pool_token_amount":233020905176676076}],[56,{"iota_amount":234435276020206761,"pool_token_amount":233020226876596945}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":234397686763977888,"pool_token_amount":233017155972850453}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":234325145049780864,"pool_token_amount":233013851381616593}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":234234500827422372,"pool_token_amount":233026956166094067}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":234055168347464797,"pool_token_amount":233020784253925607}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":173985000713418685,"pool_token_amount":173345267404012439}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":173927420932867858,"pool_token_amount":173366689954421297}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":203449412632413171,"pool_token_amount":203136281767622411}],[26,{"iota_amount":203384427705029963,"pool_token_amount":203111132495227021}],[25,{"iota_amount":203338218887619243,"pool_token_amount":203106570302539433}],[24,{"iota_amount":173297867115400822,"pool_token_amount":173137507758920081}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":153260301729060518,"pool_token_amount":153153971066438216}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[17,{"iota_amount":150000000093514591,"pool_token_amount":150000000001870281}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":150000000004141300,"pool_token_amount":150000000000082818}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":150000000004043500,"pool_token_amount":150000000000080863}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":150000000003326900,"pool_token_amount":150000000000066536}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":150000000003294600,"pool_token_amount":150000000000065891}]],"Triton One":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":198991009805458895,"pool_token_amount":194785864649637002}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":198803728897897046,"pool_token_amount":194778876201495653}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":198768027370344087,"pool_token_amount":194872556779211613}],[151,{"iota_amount":198719341333845034,"pool_token_amount":194876309294530149}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":203737325869460339,"pool_token_amount":200086888375657790}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":203560143524387067,"pool_token_amount":199991474108306424}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":203505845699295916,"pool_token_amount":199990554815261384}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":203276280400971599,"pool_token_amount":199974647969004350}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":203412797808014374,"pool_token_amount":200266391800596439}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":203333980585887146,"pool_token_amount":200215037851992091}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":203306498198861744,"pool_token_amount":200214226026559132}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":203224091735731705,"pool_token_amount":200212009473236461}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":203172378702422825,"pool_token_amount":200213770673772247}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":203090108141743260,"pool_token_amount":200211689944467682}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":203062656841151321,"pool_token_amount":200210914993052867}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":202965764665155526,"pool_token_amount":200203247006383330}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":202934080145268489,"pool_token_amount":200202317066556481}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":202742868116663072,"pool_token_amount":200196394297017248}],[97,{"iota_amount":202648954193533223,"pool_token_amount":200193612818845603}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":202614698798565489,"pool_token_amount":200189786749588769}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":202595567579273229,"pool_token_amount":200200823927421286}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":202491211098378176,"pool_token_amount":200186969630967513}],[91,{"iota_amount":202445950072728454,"pool_token_amount":200171612022406513}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":202329178176887505,"pool_token_amount":200114871742331488}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":202194407932305893,"pool_token_amount":200069722219844067}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":172166816115626413,"pool_token_amount":170382623233018610}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":171822855443734707,"pool_token_amount":170315948414895472}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":171796287535230526,"pool_token_amount":170315153560280824}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":171741750462219965,"pool_token_amount":170313456227177298}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":171714511808886425,"pool_token_amount":170312646843633573}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":231746433387505864,"pool_token_amount":230078225440051694}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[57,{"iota_amount":231498962012049306,"pool_token_amount":230067889799375063}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":231428703108166560,"pool_token_amount":230065674515928084}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":231245681084855439,"pool_token_amount":230053602489739875}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":231210111514283364,"pool_token_amount":230052213776373398}],[47,{"iota_amount":231139380498801780,"pool_token_amount":230049950628451325}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":230998199769007888,"pool_token_amount":230045478693494553}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":170872659228154180,"pool_token_amount":170270078109020074}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":170845499009182599,"pool_token_amount":170268807990236286}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":170788779790350746,"pool_token_amount":170264550347116954}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":170729590965583526,"pool_token_amount":170260897998974284}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":170675580515823623,"pool_token_amount":170263223647232491}],[31,{"iota_amount":170642085918564367,"pool_token_amount":170257885411481016}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":150293042126533445,"pool_token_amount":150258238797174382}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":150000000119670491,"pool_token_amount":150000000002393397}],[18,{"iota_amount":150000000116171591,"pool_token_amount":150000000002323420}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":150000000003652300,"pool_token_amount":150000000000073040}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":150000000003456700,"pool_token_amount":150000000000069129}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":150000000003391500,"pool_token_amount":150000000000067827}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":150000000003294600,"pool_token_amount":150000000000065891}]],"XPRV":[[167,{"iota_amount":28433832350657133,"pool_token_amount":27875846984865131}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":28430123044483991,"pool_token_amount":27875483333005919}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":28415270159743620,"pool_token_amount":27874010950271860}],[161,{"iota_amount":28411565610188536,"pool_token_amount":27873647551624501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":28407856611839968,"pool_token_amount":27873283673695788}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":28396378874143627,"pool_token_amount":27872113208804441}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":28380930792358347,"pool_token_amount":27870409842497367}],[151,{"iota_amount":28373321947038933,"pool_token_amount":27869671575611086}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":28354278425753637,"pool_token_amount":27867808553436391}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":28342836972707198,"pool_token_amount":27866683015536441}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":28335221206819440,"pool_token_amount":27865940037890630}],[140,{"iota_amount":28331409297372993,"pool_token_amount":27865565159656615}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":28327596761967368,"pool_token_amount":27865190174444731}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":28323776583305287,"pool_token_amount":27864809965324529}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":28316137667830062,"pool_token_amount":27864053978178374}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":28308510745998865,"pool_token_amount":27863303416345808}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":28263641571739343,"pool_token_amount":27859062577389535}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":28237058775138396,"pool_token_amount":27856437072776569}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":28196478128337676,"pool_token_amount":27852393635110356}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":28187644101162435,"pool_token_amount":27851520057106231}],[101,{"iota_amount":28178877056040005,"pool_token_amount":27850654633191608}],[99,{"iota_amount":28170163272643066,"pool_token_amount":27849793340004021}],[98,{"iota_amount":28165814877641750,"pool_token_amount":27849366120281138}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":28153013194036144,"pool_token_amount":27848216170649063}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":28144419075122907,"pool_token_amount":27847365114938084}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":28098841278417034,"pool_token_amount":27842967945084509}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":28078020626674975,"pool_token_amount":27840889999744788}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":28069794830501462,"pool_token_amount":27840072528342575}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":28061439854505913,"pool_token_amount":27839226853117436}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":28052768891035579,"pool_token_amount":27838364777449858}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":28035087349683527,"pool_token_amount":27836603064909454}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":28030642233143878,"pool_token_amount":27836161700329014}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":28004629189679650,"pool_token_amount":27832677511120410}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":28000517461989130,"pool_token_amount":27832268862996942}],[57,{"iota_amount":27992301344023125,"pool_token_amount":27831459306861029}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":27984053892141673,"pool_token_amount":27830718554664686}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":27975530426034577,"pool_token_amount":27829802754784297}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27954593676026232,"pool_token_amount":27827880873840843}],[46,{"iota_amount":27946140285737349,"pool_token_amount":27827032858066130}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":27914725117342875,"pool_token_amount":27822342378992317}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":27905986683322338,"pool_token_amount":27821416570911152}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":27901622991657448,"pool_token_amount":27820973448928955}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27881703017381339,"pool_token_amount":27817776935090289}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":27036225833098401,"pool_token_amount":26995215285790416}],[24,{"iota_amount":20020118981025677,"pool_token_amount":20001684160504849}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":20015286295222270,"pool_token_amount":20001432914590529}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000442900,"pool_token_amount":20000000000008856}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[1,{"iota_amount":20000000000000000,"pool_token_amount":20000000000000000}]],"[NODERS]TEAM x Criterion VC":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35685512405161687,"pool_token_amount":34990548761264640}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":35680901822951009,"pool_token_amount":34990096681652182}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35662463274914515,"pool_token_amount":34988288208345689}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":35642456906122631,"pool_token_amount":34989726080558016}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[151,{"iota_amount":35621104854325186,"pool_token_amount":34990022922078565}],[149,{"iota_amount":35611480944552159,"pool_token_amount":34989077523002324}],[145,{"iota_amount":35594889267432401,"pool_token_amount":34989542229932358}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35590171279848642,"pool_token_amount":34989078454243244}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35581044976198111,"pool_token_amount":34988447645272869}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35548026481556977,"pool_token_amount":34989379385759977}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":35501793539658555,"pool_token_amount":34989849349375010}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":35487648765784962,"pool_token_amount":34988456000772605}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":35482934633353872,"pool_token_amount":34987991218365342}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35468034376982322,"pool_token_amount":34990030976442642}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":35453844070558531,"pool_token_amount":34988586502645621}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35445163166658383,"pool_token_amount":34988394493978352}],[109,{"iota_amount":35439922360567106,"pool_token_amount":34987877166531510}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35440110211606420,"pool_token_amount":34992719167325704}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":35434758674125628,"pool_token_amount":34992190768893508}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35418339698927867,"pool_token_amount":34990569140492434}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[102,{"iota_amount":35407433979698612,"pool_token_amount":34989491657954172}],[99,{"iota_amount":35391249803911875,"pool_token_amount":34987893899063425}],[98,{"iota_amount":35386401982332557,"pool_token_amount":34987889991339302}],[97,{"iota_amount":35383222820365260,"pool_token_amount":34989500349815882}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35377775638657477,"pool_token_amount":34988961691698808}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":35372343045750659,"pool_token_amount":34988424401982961}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35365301066186645,"pool_token_amount":34991022246494472}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35359994224662397,"pool_token_amount":34990498071016053}],[90,{"iota_amount":35349418781117843,"pool_token_amount":34989453291537979}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35324124581544146,"pool_token_amount":34987881955006384}],[84,{"iota_amount":35319415609361708,"pool_token_amount":34987881023750211}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35303911537176922,"pool_token_amount":34986513188134171}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35295011936511709,"pool_token_amount":34991884415352838}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":35274119560355052,"pool_token_amount":34989817205668296}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":35263207797353194,"pool_token_amount":34988716894055157}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":35239041836218477,"pool_token_amount":34989555962055678}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35217483964757468,"pool_token_amount":34987416784401823}],[61,{"iota_amount":35207027086995165,"pool_token_amount":34986368916024809}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35181936707389152,"pool_token_amount":34989466908485596}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[47,{"iota_amount":35144558372430937,"pool_token_amount":34990496893732683}],[46,{"iota_amount":35139223817847847,"pool_token_amount":34989965776752999}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":35128550386908021,"pool_token_amount":34988898413175756}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":35090088100129445,"pool_token_amount":34999855819793100}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":35084201632528454,"pool_token_amount":34999274082785235}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":35072407836900776,"pool_token_amount":34998097472524947}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35056903087806092,"pool_token_amount":34999119511241006}],[27,{"iota_amount":35050340429815906,"pool_token_amount":34998463428624354}],[26,{"iota_amount":25044566109124850,"pool_token_amount":25011994690715090}],[25,{"iota_amount":25039340119345633,"pool_token_amount":25011473670993887}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[23,{"iota_amount":25017803301414388,"pool_token_amount":25000952838081825}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"flipside":[[167,{"iota_amount":27532373588994884,"pool_token_amount":26995323800644628}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":27512992500354338,"pool_token_amount":26995423737105904}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":27499708296725803,"pool_token_amount":26995402304595710}],[156,{"iota_amount":27496370603089881,"pool_token_amount":26995402367441105}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":27493032755888594,"pool_token_amount":26995402447128066}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":27482834538446799,"pool_token_amount":26995222616107719}],[150,{"iota_amount":27476129200268487,"pool_token_amount":26995194240137059}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":27451230606734737,"pool_token_amount":26996542467427820}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":27447619631841414,"pool_token_amount":26996187350498645}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":27440400474450271,"pool_token_amount":26995480807183917}],[138,{"iota_amount":27436786094629896,"pool_token_amount":26995125228977740}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":27471345006980257,"pool_token_amount":27038746789141594}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":27467732150258859,"pool_token_amount":27038391192233070}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27461064798095201,"pool_token_amount":27038230916663063}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27457450485634085,"pool_token_amount":27037875050059726}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27428550802606367,"pool_token_amount":27035037065133579}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[117,{"iota_amount":27406886151991049,"pool_token_amount":27032902834648847}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27392465674457751,"pool_token_amount":27031497979236754}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":27385243770109695,"pool_token_amount":27030784374385394}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":27377597724080075,"pool_token_amount":27030011849113484}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":27369458974700756,"pool_token_amount":27029208252576632}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":27365225673870635,"pool_token_amount":27028790182019597}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[102,{"iota_amount":27348390991217020,"pool_token_amount":27027130618303913}],[100,{"iota_amount":27340172278468169,"pool_token_amount":27026570787440683}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[95,{"iota_amount":27318548597338802,"pool_token_amount":27023633611815261}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":27293010945122241,"pool_token_amount":27020251629358645}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":27288971293336854,"pool_token_amount":27019851700870231}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27268866621258136,"pool_token_amount":27017862153907054}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":27253088766137304,"pool_token_amount":27016718970621909}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":27249085196039786,"pool_token_amount":27016321199007480}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27241079235156409,"pool_token_amount":27015525604577592}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27220500732480903,"pool_token_amount":27013469059909230}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":27203269321719891,"pool_token_amount":27011756872847752}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[60,{"iota_amount":27174554896427157,"pool_token_amount":27008867932340924}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":27166127501878763,"pool_token_amount":27007649397677727}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27150373744240000,"pool_token_amount":27006407025015528}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27142126147188912,"pool_token_amount":27005566887576850}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":27087679279503524,"pool_token_amount":26999259034798305}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27083590231811537,"pool_token_amount":26998873959970908}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":27066003482032974,"pool_token_amount":26997020878411106}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27061473674306134,"pool_token_amount":26996594665778317}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":27051620169443605,"pool_token_amount":26994956181712961}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20010541466205800,"pool_token_amount":20001381426613839}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025407401,"pool_token_amount":20000000000508134}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":20000000015785201,"pool_token_amount":20000000000315691}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"gumi":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":28089649481105705,"pool_token_amount":27549229553296235}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[157,{"iota_amount":28064485933472788,"pool_token_amount":27547373924223226}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":28053054368008802,"pool_token_amount":27546247804964792}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":28049043023242419,"pool_token_amount":27545675569264851}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":28022628323883408,"pool_token_amount":27543041640343834}],[145,{"iota_amount":28018914143063139,"pool_token_amount":27542676578186921}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":28007776053591359,"pool_token_amount":27541579468802480}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":28004064773854762,"pool_token_amount":27541214517874844}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":27988600877241149,"pool_token_amount":27539155075100299}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":27973745206140639,"pool_token_amount":27537693099464101}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":27970030992607222,"pool_token_amount":27537327467278177}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":27966314282594134,"pool_token_amount":27536959773445759}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":27947740289374544,"pool_token_amount":27535132253951162}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":27940288679184536,"pool_token_amount":27534374105151262}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":27936576425005469,"pool_token_amount":27534008272436664}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":27932862469927464,"pool_token_amount":27533641341284628}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":27925440392910477,"pool_token_amount":27532910596400905}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":27921729267289709,"pool_token_amount":27532544699952348}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":27910797961529416,"pool_token_amount":27531644331061758}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":27903978672157769,"pool_token_amount":27531505705898765}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":27900268040029037,"pool_token_amount":27531139595394793}],[112,{"iota_amount":27896577295174092,"pool_token_amount":27530793174323566}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":27880688624499085,"pool_token_amount":27529033886588305}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":27859422089003889,"pool_token_amount":27526933462659154}],[98,{"iota_amount":27836969500709625,"pool_token_amount":27523652198440132}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":27828517434230719,"pool_token_amount":27522773738140656}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":27794576633666186,"pool_token_amount":27518904826715602}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":27790426127529759,"pool_token_amount":27518493892249750}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":27773902642797369,"pool_token_amount":27516849371604790}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":27744873624322560,"pool_token_amount":27513877598687063}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":27735148759807722,"pool_token_amount":27511574195854449}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":27722254405021128,"pool_token_amount":27510293190437566}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":27650316857266168,"pool_token_amount":27502525673774415}],[53,{"iota_amount":27646204002457652,"pool_token_amount":27502116586609965}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":27642091260215080,"pool_token_amount":27501707455871122}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":27637979192881203,"pool_token_amount":27501298337498057}],[50,{"iota_amount":27633867307112499,"pool_token_amount":27500889182409629}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":27625642734517551,"pool_token_amount":27500070628102297}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":27609178230209736,"pool_token_amount":27498416096826301}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":27605066239433305,"pool_token_amount":27498006547388062}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":27583961979008942,"pool_token_amount":27495917674290648}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":27561470974180397,"pool_token_amount":27493464986141190}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":27542688954400532,"pool_token_amount":27491505311441638}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[25,{"iota_amount":20024226520465665,"pool_token_amount":20001541198081181}],[24,{"iota_amount":20019503314880995,"pool_token_amount":20001068989964456}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":20000000000537500,"pool_token_amount":20000000000010743}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000460100,"pool_token_amount":20000000000009197}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":20000000000455800,"pool_token_amount":20000000000009112}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[5,{"iota_amount":20000000000451500,"pool_token_amount":20000000000009027}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"mrgn":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":143781241375204268,"pool_token_amount":140728373974689481}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":143762283318436356,"pool_token_amount":140727898640005615}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":143743307388722593,"pool_token_amount":140727409559102965}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[158,{"iota_amount":143626212256738294,"pool_token_amount":140722029232498623}],[156,{"iota_amount":143587095237597251,"pool_token_amount":140720855634157745}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":143564101484413469,"pool_token_amount":140716902184771534}],[154,{"iota_amount":143597778717958572,"pool_token_amount":140768504113805144}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":143577797641885482,"pool_token_amount":140767505580571284}],[149,{"iota_amount":142196869237580888,"pool_token_amount":139487369055511228}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[145,{"iota_amount":143441925318899996,"pool_token_amount":140782849002839805}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":143396024740534671,"pool_token_amount":140774671444527960}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":143372554739672573,"pool_token_amount":140770061459112067}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[139,{"iota_amount":143313593685504624,"pool_token_amount":140767488136017455}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":143274086953709866,"pool_token_amount":140765619686574362}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":143155919245644861,"pool_token_amount":140760298825871130}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":143135973218894731,"pool_token_amount":140759168799034963}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":142826578361803996,"pool_token_amount":140713484612977550}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[112,{"iota_amount":142749002650021331,"pool_token_amount":140711042416771739}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":142710482024021199,"pool_token_amount":140710093249898521}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":142667445911338223,"pool_token_amount":140708822108848609}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":142645827419318108,"pool_token_amount":140708192635477275}],[106,{"iota_amount":142623516795253190,"pool_token_amount":140707532405009780}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[100,{"iota_amount":142488303920234969,"pool_token_amount":140702371943728416}],[99,{"iota_amount":142466187932556592,"pool_token_amount":140701716777744444}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":142355481139597324,"pool_token_amount":140697731424860664}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":142333688531592497,"pool_token_amount":140697086221028453}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[91,{"iota_amount":142236644939543520,"pool_token_amount":140642683535537714}],[90,{"iota_amount":142216521203279543,"pool_token_amount":140643481155432065}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":142151924625217515,"pool_token_amount":140641612680325821}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":142108315905709257,"pool_token_amount":140639693942024777}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":141977014802261872,"pool_token_amount":140633684214749104}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":141955701995257903,"pool_token_amount":140633083807176029}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":141824281644694518,"pool_token_amount":140627642536047104}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":141689056436470155,"pool_token_amount":140623982193974760}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[61,{"iota_amount":141581048855008034,"pool_token_amount":140620781320569534}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":141343996236636074,"pool_token_amount":140612660096400970}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[46,{"iota_amount":141258034926011825,"pool_token_amount":140610795539826013}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":140167814503844322,"pool_token_amount":139609291100031220}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[40,{"iota_amount":140123639114120493,"pool_token_amount":139607603527808617}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[36,{"iota_amount":140034352402448289,"pool_token_amount":139604517205229291}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":107995433736031548,"pool_token_amount":107753230994049485}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":107465327177211600,"pool_token_amount":107279053971767767}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":81595177526042636,"pool_token_amount":81558627631456920}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019026363317487,"pool_token_amount":80001922034404952}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000010304137}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[18,{"iota_amount":80000000062001508,"pool_token_amount":80000000006200139}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000215393}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000184075}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000184075}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000180597}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"n1stake":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":35695884510858364,"pool_token_amount":34999397177594524}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":35682052513059262,"pool_token_amount":34998041704088657}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[162,{"iota_amount":35677442052301834,"pool_token_amount":34997589495740220}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35663414152987650,"pool_token_amount":34996214172156392}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[154,{"iota_amount":35638358475438100,"pool_token_amount":34992867428158254}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":35628472854794850,"pool_token_amount":34991665648475076}],[151,{"iota_amount":56044122752153279,"pool_token_amount":24261207903505724}],[148,{"iota_amount":35609224891436473,"pool_token_amount":34989774908603394}],[148,{"iota_amount":55959630457571875,"pool_token_amount":24233572661704475}],[146,{"iota_amount":35599795219329414,"pool_token_amount":34988848288772563}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[144,{"iota_amount":35590361238027694,"pool_token_amount":34987922811019785}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":35580933856845646,"pool_token_amount":34986995974482635}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[141,{"iota_amount":35589883926123985,"pool_token_amount":34999970316353537}],[140,{"iota_amount":60921757383204538,"pool_token_amount":26408517011573826}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":60888915412323835,"pool_token_amount":26403984377137302}],[136,{"iota_amount":35566292970770879,"pool_token_amount":34997649766885778}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":35547326761594003,"pool_token_amount":34995785812494174}],[132,{"iota_amount":60754735447988994,"pool_token_amount":26361957590248632}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":35537788657287212,"pool_token_amount":34994893671667603}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":61138279756466260,"pool_token_amount":26538176001355381}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":35518912126868975,"pool_token_amount":34993223207508904}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":35509480865535750,"pool_token_amount":34992387834479265}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[121,{"iota_amount":35495339415527013,"pool_token_amount":34991140290294962}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":91036948805633324,"pool_token_amount":39597131861236643}],[112,{"iota_amount":35452878920298045,"pool_token_amount":34987340628884302}],[112,{"iota_amount":90973078203396260,"pool_token_amount":39574180743673393}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":35459098053544175,"pool_token_amount":35001950483034802}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[107,{"iota_amount":90678520340117795,"pool_token_amount":39471835547676215}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":35426838065794494,"pool_token_amount":34999023851407946}],[102,{"iota_amount":35415932356821990,"pool_token_amount":34998000251301289}],[99,{"iota_amount":35399445178722090,"pool_token_amount":34996183045679838}],[97,{"iota_amount":35388746558362346,"pool_token_amount":34995200663423735}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":35383292384933425,"pool_token_amount":34994682021246894}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[89,{"iota_amount":56187492030615276,"pool_token_amount":24519549385808255}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":35335415839966122,"pool_token_amount":34990188332254264}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":35303984229399429,"pool_token_amount":34987237813460523}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":35302790303492847,"pool_token_amount":35000327554196805}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[74,{"iota_amount":35281874305664661,"pool_token_amount":34998340487047747}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[73,{"iota_amount":35276539495582833,"pool_token_amount":34997837752908948}],[73,{"iota_amount":56159278346694944,"pool_token_amount":24560930745639293}],[72,{"iota_amount":35270977542662803,"pool_token_amount":34997309052626871}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":55470446440637224,"pool_token_amount":24270115106147411}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[68,{"iota_amount":35248719052239813,"pool_token_amount":34995186785710478}],[67,{"iota_amount":35243162553192326,"pool_token_amount":34994662715071092}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":35237725157518728,"pool_token_amount":34994256757198971}],[64,{"iota_amount":35226826282559102,"pool_token_amount":34993121496684913}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35221602680111719,"pool_token_amount":34992628546658942}],[62,{"iota_amount":35216379384042433,"pool_token_amount":34992135559388359}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[56,{"iota_amount":35185960702377644,"pool_token_amount":34990094273326690}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[51,{"iota_amount":51181856487911554,"pool_token_amount":22452827715301953}],[50,{"iota_amount":35166080371835165,"pool_token_amount":34999041352051031}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[45,{"iota_amount":35138995641189211,"pool_token_amount":34996108608441680}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35123076964091264,"pool_token_amount":34994678958666948}],[42,{"iota_amount":50779740415595677,"pool_token_amount":22303997541950075}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[38,{"iota_amount":50737792264121628,"pool_token_amount":22298447154851180}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":35084613848909738,"pool_token_amount":34990962962551550}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":35066922499685804,"pool_token_amount":34989252208275169}],[31,{"iota_amount":35061020819628992,"pool_token_amount":34988654367370199}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":50675677986519222,"pool_token_amount":22299539739331414}],[29,{"iota_amount":35049301829058695,"pool_token_amount":34987645711790961}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[28,{"iota_amount":35043127530283935,"pool_token_amount":34986991635518040}],[27,{"iota_amount":35036744125201953,"pool_token_amount":34986414567028118}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":25000000008826354,"pool_token_amount":25000000000176518}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":25000000000567000,"pool_token_amount":25000000000011337}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}]],"proofgroup":[[167,{"iota_amount":35772142215430461,"pool_token_amount":35044630444734000}],[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":35762719581942334,"pool_token_amount":35043984234276463}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":35743980318891519,"pool_token_amount":35042698612246563}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":35734554057886969,"pool_token_amount":35042048943705223}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[156,{"iota_amount":56188193923605998,"pool_token_amount":24308524299947607}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[152,{"iota_amount":35700696013427073,"pool_token_amount":35039562770667406}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":35638210338012381,"pool_token_amount":35035268828159321}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":35633491564562626,"pool_token_amount":35034944101792459}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":35619333104022033,"pool_token_amount":35033969535367050}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":35614511961912440,"pool_token_amount":35033633942146394}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":35604976024779460,"pool_token_amount":35032977271896757}],[131,{"iota_amount":61200538240221176,"pool_token_amount":26558679616291721}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[128,{"iota_amount":35585937671829082,"pool_token_amount":35031705696880001}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":35566873606110726,"pool_token_amount":35030393612034431}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":35552627797126937,"pool_token_amount":35029413158471376}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":35528845211603282,"pool_token_amount":35027759659204033}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[115,{"iota_amount":35525886019425708,"pool_token_amount":35029255900634413}],[114,{"iota_amount":35521070597162425,"pool_token_amount":35028921698855211}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[109,{"iota_amount":35496855487637924,"pool_token_amount":35027611692468671}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":35491502013389145,"pool_token_amount":35027240067274166}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":35475070509787718,"pool_token_amount":35026104736170958}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[101,{"iota_amount":35452888341247571,"pool_token_amount":35024405988200284}],[98,{"iota_amount":35436284673213118,"pool_token_amount":35023060157927975}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":35409060225899448,"pool_token_amount":35021039061486381}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[90,{"iota_amount":57186833400164593,"pool_token_amount":24952237241716518}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":35371746017007473,"pool_token_amount":35018457367933253}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35354045531814445,"pool_token_amount":35015395593946908}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":35337527302222253,"pool_token_amount":35013900222920192}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35332185585793852,"pool_token_amount":35013529727146290}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[77,{"iota_amount":35321726128541859,"pool_token_amount":35012797673176745}],[76,{"iota_amount":35316392269509581,"pool_token_amount":35012427568586350}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":35294712270130274,"pool_token_amount":35010916253222684}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[70,{"iota_amount":35286594809324366,"pool_token_amount":35013119836907039}],[69,{"iota_amount":35281036465130049,"pool_token_amount":35012734694850448}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[65,{"iota_amount":35256003176342132,"pool_token_amount":35008403290394893}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[63,{"iota_amount":35245314055553296,"pool_token_amount":35007641785184758}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[59,{"iota_amount":35223767014795454,"pool_token_amount":35005951138361062}],[58,{"iota_amount":35218432380461630,"pool_token_amount":35005580023125408}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":35202254199954330,"pool_token_amount":35004294021820698}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[48,{"iota_amount":35163661677670141,"pool_token_amount":35000452507330301}],[45,{"iota_amount":35147454666865835,"pool_token_amount":34999134229356807}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":35142113383369845,"pool_token_amount":34998755434776608}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":35131421441483279,"pool_token_amount":34997989159133137}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[34,{"iota_amount":50692390295195912,"pool_token_amount":22292389021125117}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[27,{"iota_amount":35041315958748060,"pool_token_amount":34988508064706652}],[25,{"iota_amount":25029360201706229,"pool_token_amount":25001139969309546}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":25011906824167687,"pool_token_amount":25000348354054695}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[19,{"iota_amount":25000000019836964,"pool_token_amount":25000000000396727}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":25000000000675000,"pool_token_amount":25000000000013493}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[13,{"iota_amount":80000000001945200,"pool_token_amount":80000000000038898}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":25000000000577800,"pool_token_amount":25000000000011551}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[7,{"iota_amount":80000000001823400,"pool_token_amount":80000000000036464}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":25000000000550800,"pool_token_amount":25000000000011015}],[1,{"iota_amount":25000000000000000,"pool_token_amount":25000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]],"stakefish":[[167,{"iota_amount":208881385873158384,"pool_token_amount":90247695315699644}],[166,{"iota_amount":95913680739475174,"pool_token_amount":41444685619290495}],[165,{"iota_amount":96367742104664436,"pool_token_amount":41645863907718956}],[164,{"iota_amount":96352449800357745,"pool_token_amount":41644207423648719}],[163,{"iota_amount":96337649322853891,"pool_token_amount":41642762419710501}],[161,{"iota_amount":96202746163005059,"pool_token_amount":41594343386922479}],[160,{"iota_amount":96187910895314859,"pool_token_amount":41592885347432275}],[159,{"iota_amount":56158647597223730,"pool_token_amount":24286724137068177}],[155,{"iota_amount":56172060035596590,"pool_token_amount":24304549631279918}],[154,{"iota_amount":56169370360384329,"pool_token_amount":24306392658405239}],[153,{"iota_amount":29987466294310320,"pool_token_amount":29396693730148779}],[151,{"iota_amount":29979659782829278,"pool_token_amount":29396746064794266}],[149,{"iota_amount":29969296302076027,"pool_token_amount":29394290770324031}],[149,{"iota_amount":55998206783406189,"pool_token_amount":24247345210350525}],[147,{"iota_amount":60577452505114017,"pool_token_amount":26236842628119062}],[145,{"iota_amount":61011740165518247,"pool_token_amount":26431456289890675}],[143,{"iota_amount":60941275508518380,"pool_token_amount":26407345445876172}],[142,{"iota_amount":29926742928748465,"pool_token_amount":29379547446181397}],[142,{"iota_amount":60887050348866878,"pool_token_amount":26387055543305147}],[139,{"iota_amount":29915506088501234,"pool_token_amount":29380097874815043}],[139,{"iota_amount":61155058038470407,"pool_token_amount":26512913755951022}],[138,{"iota_amount":61143239422020933,"pool_token_amount":26511041507554672}],[137,{"iota_amount":29904117564503015,"pool_token_amount":29376646075112161}],[136,{"iota_amount":60872175072904209,"pool_token_amount":26399939040663480}],[135,{"iota_amount":29896952575462895,"pool_token_amount":29377339403359865}],[135,{"iota_amount":60871668395294213,"pool_token_amount":26402931636731743}],[134,{"iota_amount":60360812990985173,"pool_token_amount":26184562351206618}],[133,{"iota_amount":29888849828079269,"pool_token_amount":29377109318607311}],[133,{"iota_amount":60012425885620314,"pool_token_amount":26036612776892024}],[132,{"iota_amount":29884817162144206,"pool_token_amount":29377013381909179}],[130,{"iota_amount":61151512266114651,"pool_token_amount":26540661586893959}],[129,{"iota_amount":29869433137088863,"pool_token_amount":29373499711540314}],[128,{"iota_amount":29864756707821774,"pool_token_amount":29372773558718077}],[128,{"iota_amount":61068669793963343,"pool_token_amount":26511219104947826}],[127,{"iota_amount":29860771210262593,"pool_token_amount":29372723919018755}],[127,{"iota_amount":60697501996813641,"pool_token_amount":26353310490251126}],[126,{"iota_amount":60398230627062173,"pool_token_amount":26226590838726727}],[125,{"iota_amount":29850986614554744,"pool_token_amount":29370836955533486}],[125,{"iota_amount":60367268758920307,"pool_token_amount":26216361552415576}],[124,{"iota_amount":29846154173539812,"pool_token_amount":29369952245583494}],[124,{"iota_amount":60366297900473592,"pool_token_amount":26219156603975963}],[123,{"iota_amount":60384867120680711,"pool_token_amount":26230440118575316}],[122,{"iota_amount":60341010770956679,"pool_token_amount":26214606825799235}],[121,{"iota_amount":60288245777136946,"pool_token_amount":26194861606527510}],[120,{"iota_amount":29837022687388869,"pool_token_amount":29376447741189862}],[120,{"iota_amount":103544263515843302,"pool_token_amount":44998846516813681}],[119,{"iota_amount":29833261047429264,"pool_token_amount":29376615394667133}],[119,{"iota_amount":101639408852691686,"pool_token_amount":44176404869955651}],[116,{"iota_amount":91109376671005846,"pool_token_amount":39614137953180303}],[114,{"iota_amount":91046858901959660,"pool_token_amount":39596611581490333}],[113,{"iota_amount":29793892295406813,"pool_token_amount":29361069801172803}],[111,{"iota_amount":90976017183645388,"pool_token_amount":39580291191024981}],[110,{"iota_amount":90853781868271072,"pool_token_amount":39531943192078969}],[109,{"iota_amount":29766564766399940,"pool_token_amount":29350070552647092}],[109,{"iota_amount":90818329079549994,"pool_token_amount":39521890749819817}],[108,{"iota_amount":90698340129651440,"pool_token_amount":39475045972524013}],[106,{"iota_amount":90192067570871508,"pool_token_amount":39265598805458620}],[105,{"iota_amount":90175659610215140,"pool_token_amount":39264020836990014}],[104,{"iota_amount":90167351064918546,"pool_token_amount":39265954008075857}],[103,{"iota_amount":90592941540681178,"pool_token_amount":39456929245771835}],[97,{"iota_amount":35622556754076862,"pool_token_amount":35189307561422818}],[97,{"iota_amount":71776871800572258,"pool_token_amount":31288050467663824}],[96,{"iota_amount":71886997864179676,"pool_token_amount":31340431105064028}],[94,{"iota_amount":71831190143424985,"pool_token_amount":31324806217884421}],[93,{"iota_amount":57297456596387695,"pool_token_amount":24990266938343304}],[92,{"iota_amount":35605171138173493,"pool_token_amount":35198429693195976}],[90,{"iota_amount":35593350420808782,"pool_token_amount":35197209709578066}],[89,{"iota_amount":35588684905836326,"pool_token_amount":35197820690881089}],[88,{"iota_amount":35579717253618074,"pool_token_amount":35194172033909190}],[88,{"iota_amount":56166885509250623,"pool_token_amount":24513909287171205}],[87,{"iota_amount":56159191397121175,"pool_token_amount":24513900357593235}],[86,{"iota_amount":35560905889181868,"pool_token_amount":35186000649044621}],[86,{"iota_amount":56150732419112959,"pool_token_amount":24513558706135662}],[85,{"iota_amount":35553934892259634,"pool_token_amount":35184297720899163}],[84,{"iota_amount":56112589201535947,"pool_token_amount":24503565573990159}],[83,{"iota_amount":35509889152282837,"pool_token_amount":35151179795604794}],[82,{"iota_amount":35502708655654310,"pool_token_amount":35149254591849708}],[82,{"iota_amount":56006352436776612,"pool_token_amount":24463819272006984}],[81,{"iota_amount":55978239754239443,"pool_token_amount":24454868217994275}],[80,{"iota_amount":55982125522980618,"pool_token_amount":24460024235460896}],[79,{"iota_amount":35462458208177270,"pool_token_amount":35125055580699049}],[79,{"iota_amount":55961329588981957,"pool_token_amount":24454268814291919}],[78,{"iota_amount":55960538033470520,"pool_token_amount":24457247594498015}],[76,{"iota_amount":55868024788764297,"pool_token_amount":24423460365495828}],[75,{"iota_amount":35430972578159967,"pool_token_amount":35114584443905531}],[75,{"iota_amount":55850720690115760,"pool_token_amount":24419219347532396}],[74,{"iota_amount":56170074562925206,"pool_token_amount":24562195984152762}],[72,{"iota_amount":55976309982391719,"pool_token_amount":24484411032467644}],[71,{"iota_amount":55974557670685480,"pool_token_amount":24487145354181172}],[69,{"iota_amount":55120976705461675,"pool_token_amount":24120723901360968}],[67,{"iota_amount":35404646451811103,"pool_token_amount":35131352034301923}],[67,{"iota_amount":54922461833202986,"pool_token_amount":24040767862338264}],[66,{"iota_amount":35387363056137505,"pool_token_amount":35119605286884066}],[66,{"iota_amount":51784455072163348,"pool_token_amount":22670478176028089}],[65,{"iota_amount":51823276602441004,"pool_token_amount":22690764268333320}],[64,{"iota_amount":51778255658294528,"pool_token_amount":22674161574456638}],[62,{"iota_amount":35360029536078967,"pool_token_amount":35113446846709509}],[61,{"iota_amount":51828889965075384,"pool_token_amount":22705681335215212}],[60,{"iota_amount":51767721213259183,"pool_token_amount":22681996064361105}],[58,{"iota_amount":35300503330313385,"pool_token_amount":35075094549986471}],[57,{"iota_amount":51850391248165534,"pool_token_amount":22727510604811786}],[56,{"iota_amount":51803631385540799,"pool_token_amount":22710127677423461}],[55,{"iota_amount":51759272177735391,"pool_token_amount":22693797392845026}],[54,{"iota_amount":35250633848556019,"pool_token_amount":35046426386715321}],[53,{"iota_amount":35242541953131432,"pool_token_amount":35043579960269895}],[53,{"iota_amount":51338770888184515,"pool_token_amount":22515550259973405}],[52,{"iota_amount":51247000185712319,"pool_token_amount":22478374119493055}],[50,{"iota_amount":50934197981567236,"pool_token_amount":22347210750473799}],[49,{"iota_amount":35217819963063001,"pool_token_amount":35039791182265267}],[45,{"iota_amount":50850726085209275,"pool_token_amount":22325900694756381}],[44,{"iota_amount":50842818014652001,"pool_token_amount":22325502556608480}],[43,{"iota_amount":50789688769216860,"pool_token_amount":22305247493117139}],[42,{"iota_amount":41565353909791740,"pool_token_amount":41401171064416038}],[41,{"iota_amount":41578069248243148,"pool_token_amount":41420132016189796}],[41,{"iota_amount":50751904872745126,"pool_token_amount":22294891070200423}],[39,{"iota_amount":50745854999086066,"pool_token_amount":22298648024946857}],[37,{"iota_amount":50721441626504806,"pool_token_amount":22294607372353135}],[35,{"iota_amount":50702614556263042,"pool_token_amount":22293262884852417}],[33,{"iota_amount":50686714832591120,"pool_token_amount":22293516307138165}],[32,{"iota_amount":27076471991557233,"pool_token_amount":27011934871055111}],[32,{"iota_amount":50678079971606277,"pool_token_amount":22293347995706515}],[31,{"iota_amount":50689300221492278,"pool_token_amount":22301908815863665}],[30,{"iota_amount":27055367005343712,"pool_token_amount":26999791776119831}],[29,{"iota_amount":27050707684424655,"pool_token_amount":26999711110626054}],[29,{"iota_amount":30151303906408166,"pool_token_amount":13270093016174002}],[26,{"iota_amount":20034300924308984,"pool_token_amount":20007469271295953}],[24,{"iota_amount":20023379351249717,"pool_token_amount":20004942863108159}],[24,{"iota_amount":80078147421796327,"pool_token_amount":80007905147939202}],[22,{"iota_amount":20011405966195300,"pool_token_amount":20002245765140753}],[22,{"iota_amount":80048898706042636,"pool_token_amount":80013225045080085}],[21,{"iota_amount":80019014353317487,"pool_token_amount":80000389996274385}],[20,{"iota_amount":20000000025396901,"pool_token_amount":20000000000507924}],[20,{"iota_amount":80000000103041508,"pool_token_amount":80000000002060816}],[16,{"iota_amount":80000000028419474,"pool_token_amount":80000000000568380}],[15,{"iota_amount":80000000002206200,"pool_token_amount":80000000000044116}],[14,{"iota_amount":80000000002154000,"pool_token_amount":80000000000043073}],[12,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[11,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[10,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[9,{"iota_amount":20000000000449600,"pool_token_amount":20000000000008987}],[9,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[8,{"iota_amount":80000000001840800,"pool_token_amount":80000000000036811}],[6,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[4,{"iota_amount":20000000000441000,"pool_token_amount":20000000000008817}],[4,{"iota_amount":80000000001806000,"pool_token_amount":80000000000036117}],[3,{"iota_amount":20000000000432600,"pool_token_amount":20000000000008650}],[3,{"iota_amount":80000000001771600,"pool_token_amount":80000000000035430}],[2,{"iota_amount":20000000000428400,"pool_token_amount":20000000000008567}],[1,{"iota_amount":80000000000000000,"pool_token_amount":80000000000000000}],[0,{"iota_amount":0,"pool_token_amount":0}]]} diff --git a/crates/iota-sdk/examples/iota_client.rs b/crates/iota-sdk/examples/iota_client.rs index 058e3d2a040..0649ef17ef0 100644 --- a/crates/iota-sdk/examples/iota_client.rs +++ b/crates/iota-sdk/examples/iota_client.rs @@ -2,7 +2,7 @@ // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 -//! This example shows the few basic ways to connect to a Iota network. +//! This example shows the few basic ways to connect to an Iota network. //! There are several in-built methods for connecting to the Iota devnet, //! testnet, and localnet (running locally), as well as a custom way for //! connecting to custom URLs. The example prints out the API versions of the diff --git a/crates/iota-sdk/examples/utils.rs b/crates/iota-sdk/examples/utils.rs index dc2a57a0c76..6c24f449593 100644 --- a/crates/iota-sdk/examples/utils.rs +++ b/crates/iota-sdk/examples/utils.rs @@ -45,7 +45,7 @@ pub const IOTA_FAUCET_BASE_URL: &str = "https://faucet.testnet.iota.io"; // test // if you use the `iota start` subcommand and use the local network; if it does // not work, try with port 5003. const IOTA_FAUCET_BASE_URL: &str = "http://127.0.0.1:9123"; -/// Return a iota client to interact with the APIs, +/// Return an iota client to interact with the APIs, /// the active address of the local wallet, and another address that can be used /// as a recipient. /// @@ -73,7 +73,7 @@ pub async fn setup_for_write() -> Result<(IotaClient, IotaAddress, IotaAddress), Ok((client, active_address, *recipient)) } -/// Return a iota client to interact with the APIs and an active address from +/// Return an iota client to interact with the APIs and an active address from /// the local wallet. /// /// This function sets up a wallet in case there is no wallet locally, @@ -251,7 +251,8 @@ pub fn retrieve_wallet() -> Result<WalletContext, anyhow::Error> { let wallet_conf = iota_config_dir()?.join(IOTA_CLIENT_CONFIG); let keystore_path = iota_config_dir()?.join(IOTA_KEYSTORE_FILENAME); - // check if a wallet exists and if not, create a wallet and a iota client config + // check if a wallet exists and if not, create a wallet and an iota client + // config if !keystore_path.exists() { let keystore = FileBasedKeystore::new(&keystore_path)?; keystore.save()?; diff --git a/crates/iota-sdk/src/apis/coin_read.rs b/crates/iota-sdk/src/apis/coin_read.rs index e6bb8202588..71c1e088693 100644 --- a/crates/iota-sdk/src/apis/coin_read.rs +++ b/crates/iota-sdk/src/apis/coin_read.rs @@ -18,7 +18,7 @@ use crate::{ error::{Error, IotaRpcResult}, }; -/// Coin Read API provides the functionality needed to get information from the +/// Defines methods that retrieve information from the /// Iota network regarding the coins owned by an address. #[derive(Debug, Clone)] pub struct CoinReadApi { @@ -30,12 +30,10 @@ impl CoinReadApi { Self { api } } - /// Return a paginated response with the coins for the given address, or an - /// error upon failure. + /// Get coins for the given address filtered by coin type. Results are + /// paginated. /// - /// The coins can be filtered by `coin_type` (e.g., - /// 0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC) - /// or use `None` for the default `Coin<IOTA>`. + /// The coin type defaults to `0x2::iota::IOTA`. /// /// # Examples /// @@ -49,9 +47,10 @@ impl CoinReadApi { /// async fn main() -> Result<(), anyhow::Error> { /// let iota = IotaClientBuilder::default().build_localnet().await?; /// let address = IotaAddress::from_str("0x0000....0000")?; + /// let coin_type = String::from("0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC"); /// let coins = iota /// .coin_read_api() - /// .get_coins(address, None, None, None) + /// .get_coins(address, coin_type, None, None) /// .await?; /// Ok(()) /// } @@ -69,11 +68,8 @@ impl CoinReadApi { .get_coins(owner, coin_type.into(), cursor.into(), limit.into()) .await?) } - /// Return a paginated response with all the coins for the given address, or - /// an error upon failure. - /// - /// This function includes all coins. If needed to filter by coin type, use - /// the `get_coins` method instead. + /// Get all the coins for the given address regardless of coin type. + /// Results are paginated. /// /// # Examples /// @@ -107,11 +103,10 @@ impl CoinReadApi { .await?) } - /// Return the coins for the given address as a stream. + /// Get the coins for the given address filtered by coin type. Returns a + /// stream. /// - /// The coins can be filtered by `coin_type` (e.g., - /// 0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC) - /// or use `None` for the default `Coin<IOTA>`. + /// The coin type defaults to `0x2::iota::IOTA`. /// /// # Examples /// @@ -125,7 +120,8 @@ impl CoinReadApi { /// async fn main() -> Result<(), anyhow::Error> { /// let iota = IotaClientBuilder::default().build_localnet().await?; /// let address = IotaAddress::from_str("0x0000....0000")?; - /// let coins = iota.coin_read_api().get_coins_stream(address, None); + /// let coin_type = String::from("0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC"); + /// let coins = iota.coin_read_api().get_coins_stream(address, coin_type); /// Ok(()) /// } /// ``` @@ -168,15 +164,13 @@ impl CoinReadApi { ) } - /// Return a list of coins for the given address, or an error upon failure. + /// Get a list of coins for the given address filtered by coin type with at + /// least `amount` total value. /// - /// Note that the function selects coins to meet or exceed the requested - /// `amount`. If that it is not possible, it will fail with an - /// insufficient fund error. + /// If it is not possible to select enough coins, this function will return + /// an [`Error::InsufficientFunds`]. /// - /// The coins can be filtered by `coin_type` (e.g., - /// 0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC) - /// or use `None` to use the default `Coin<IOTA>`. + /// The coin type defaults to `0x2::iota::IOTA`. /// /// # Examples /// @@ -190,9 +184,10 @@ impl CoinReadApi { /// async fn main() -> Result<(), anyhow::Error> { /// let iota = IotaClientBuilder::default().build_localnet().await?; /// let address = IotaAddress::from_str("0x0000....0000")?; + /// let coin_type = String::from("0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC"); /// let coins = iota /// .coin_read_api() - /// .select_coins(address, None, 5, vec![]) + /// .select_coins(address, coin_type, 5, vec![]) /// .await?; /// Ok(()) /// } @@ -217,17 +212,14 @@ impl CoinReadApi { .await; if total < amount { - return Err(Error::InsufficientFund { address, amount }); + return Err(Error::InsufficientFunds { address, amount }); } Ok(coins) } - /// Return the balance for the given coin type owned by address, or an error - /// upon failure. + /// Get the balance for the given address filtered by coin type. /// - /// Note that this function sums up all the balances of all the coins - /// matching the given coin type. By default, if `coin_type` is set to - /// `None`, it will use the default `Coin<IOTA>`. + /// The coin type defaults to `0x2::iota::IOTA`. /// /// # Examples /// @@ -253,11 +245,8 @@ impl CoinReadApi { Ok(self.api.http.get_balance(owner, coin_type.into()).await?) } - /// Return a list of balances for each coin type owned by the given address, - /// or an error upon failure. - /// - /// Note that this function groups the coins by coin type, and sums up all - /// their balances. + /// Get a list of balances grouped by coin type and owned by the given + /// address. /// /// # Examples /// @@ -279,8 +268,8 @@ impl CoinReadApi { Ok(self.api.http.get_all_balances(owner).await?) } - /// Return the coin metadata (name, symbol, description, decimals, etc.) for - /// a given coin type, or an error upon failure. + /// Get the coin metadata (name, symbol, description, decimals, etc.) for + /// a given coin type. /// /// # Examples /// @@ -303,7 +292,7 @@ impl CoinReadApi { Ok(self.api.http.get_coin_metadata(coin_type.into()).await?) } - /// Return the total supply for a given coin type, or an error upon failure. + /// Get the total supply for a given coin type. /// /// # Examples /// diff --git a/crates/iota-sdk/src/apis/event.rs b/crates/iota-sdk/src/apis/event.rs index c82fda68077..17383a103c6 100644 --- a/crates/iota-sdk/src/apis/event.rs +++ b/crates/iota-sdk/src/apis/event.rs @@ -16,7 +16,7 @@ use crate::{ error::{Error, IotaRpcResult}, }; -/// Event API provides the functionality to fetch, query, or subscribe to events +/// Defines methods to fetch, query, or subscribe to events /// on the Iota network. #[derive(Clone)] pub struct EventApi { @@ -28,7 +28,7 @@ impl EventApi { Self { api } } - /// Return a stream of events, or an error upon failure. + /// Subscribe to receive a stream of filtered events. /// /// Subscription is only possible via WebSockets. /// For a list of possible event filters, see [EventFilter]. @@ -73,17 +73,15 @@ impl EventApi { } } - /// Return a list of events for the given transaction digest, or an error - /// upon failure. + /// Get a list of events for the given transaction digest. pub async fn get_events(&self, digest: TransactionDigest) -> IotaRpcResult<Vec<IotaEvent>> { Ok(self.api.http.get_events(digest).await?) } - /// Return a paginated response with events for the given event filter, or - /// an error upon failure. + /// Get a list of filtered events. The response is paginated and can be + /// ordered ascending or descending. /// - /// The ordering of the events can be set with the `descending_order` - /// argument. For a list of possible event filters, see [EventFilter]. + /// For a list of possible event filters, see [EventFilter]. pub async fn query_events( &self, query: EventFilter, @@ -98,10 +96,10 @@ impl EventApi { .await?) } - /// Return a stream of events for the given event filter. + /// Get a stream of filtered events which can be ordered ascending or + /// descending. /// - /// The ordering of the events can be set with the `descending_order` - /// argument. For a list of possible event filters, see [EventFilter]. + /// For a list of possible event filters, see [EventFilter]. pub fn get_events_stream( &self, query: EventFilter, diff --git a/crates/iota-sdk/src/apis/governance.rs b/crates/iota-sdk/src/apis/governance.rs index d1fab20f95e..98c3fefca25 100644 --- a/crates/iota-sdk/src/apis/governance.rs +++ b/crates/iota-sdk/src/apis/governance.rs @@ -13,7 +13,7 @@ use iota_types::{ use crate::{RpcClient, error::IotaRpcResult}; -/// Governance API provides the staking functionality. +/// Defines methods to get committee and staking info. #[derive(Debug, Clone)] pub struct GovernanceApi { api: Arc<RpcClient>, @@ -24,17 +24,14 @@ impl GovernanceApi { Self { api } } - /// Return a list of [DelegatedStake] objects for the given address, or an - /// error upon failure. + /// Get a list of delegated stakes for the given address. pub async fn get_stakes(&self, owner: IotaAddress) -> IotaRpcResult<Vec<DelegatedStake>> { Ok(self.api.http.get_stakes(owner).await?) } - /// Return the [IotaCommittee] information for the given `epoch`, or an - /// error upon failure. + /// Get committee information for the given epoch. /// - /// The argument `epoch` is the known epoch id or `None` for the current - /// epoch. + /// The epoch defaults to the current epoch. /// /// # Examples /// @@ -55,19 +52,16 @@ impl GovernanceApi { Ok(self.api.http.get_committee_info(epoch.into()).await?) } - /// Return the latest IOTA system state object on-chain, or an error upon - /// failure. + /// Get the latest IOTA system state object on-chain. /// - /// Use this method to access system's information, such as the current + /// Use this method to access system information, such as the current /// epoch, the protocol version, the reference gas price, the total - /// stake, active validators, and much more. See the - /// [IotaSystemStateSummary] for all the available fields. + /// stake, active validators, and much more. pub async fn get_latest_iota_system_state(&self) -> IotaRpcResult<IotaSystemStateSummary> { Ok(self.api.http.get_latest_iota_system_state().await?) } - /// Return the reference gas price for the network, or an error upon - /// failure. + /// Get the reference gas price for the network. pub async fn get_reference_gas_price(&self) -> IotaRpcResult<u64> { Ok(*self.api.http.get_reference_gas_price().await?) } diff --git a/crates/iota-sdk/src/apis/quorum_driver.rs b/crates/iota-sdk/src/apis/quorum_driver.rs index 383d48ee751..f9f78fbc461 100644 --- a/crates/iota-sdk/src/apis/quorum_driver.rs +++ b/crates/iota-sdk/src/apis/quorum_driver.rs @@ -20,8 +20,7 @@ const WAIT_FOR_LOCAL_EXECUTION_TIMEOUT: Duration = Duration::from_secs(60); const WAIT_FOR_LOCAL_EXECUTION_DELAY: Duration = Duration::from_millis(200); const WAIT_FOR_LOCAL_EXECUTION_INTERVAL: Duration = Duration::from_secs(2); -/// Quorum API that provides functionality to execute a transaction block and -/// submit it to the fullnode(s). +/// Defines methods to execute transaction blocks and submit them to fullnodes. #[derive(Clone)] pub struct QuorumDriverApi { api: Arc<RpcClient>, @@ -32,12 +31,15 @@ impl QuorumDriverApi { Self { api } } - /// Execute a transaction with a FullNode client. `request_type` - /// defaults to `ExecuteTransactionRequestType::WaitForLocalExecution`. - /// When `ExecuteTransactionRequestType::WaitForLocalExecution` is used, - /// but returned `confirmed_local_execution` is false, the client will - /// keep retry for WAIT_FOR_LOCAL_EXECUTION_RETRY_COUNT times. If it - /// still fails, it will return an error. + /// Execute a transaction with a FullNode client. + /// + /// The request type defaults to + /// [`ExecuteTransactionRequestType::WaitForLocalExecution`]. + /// + /// When `WaitForLocalExecution` is used, but the returned + /// `confirmed_local_execution` is false, the client will wait a + /// duration defined by [WAIT_FOR_LOCAL_EXECUTION_INTERVAL] + /// before returning [Error::FailToConfirmTransactionStatus]. pub async fn execute_transaction_block( &self, tx: Transaction, diff --git a/crates/iota-sdk/src/apis/read.rs b/crates/iota-sdk/src/apis/read.rs index a334f457137..ccfb6b26692 100644 --- a/crates/iota-sdk/src/apis/read.rs +++ b/crates/iota-sdk/src/apis/read.rs @@ -12,12 +12,11 @@ use iota_json_rpc_api::{ }; use iota_json_rpc_types::{ Checkpoint, CheckpointId, CheckpointPage, DevInspectArgs, DevInspectResults, - DryRunTransactionBlockResponse, DynamicFieldPage, IotaCommittee, IotaData, - IotaGetPastObjectRequest, IotaMoveNormalizedModule, IotaObjectDataOptions, IotaObjectResponse, - IotaObjectResponseQuery, IotaPastObjectResponse, IotaTransactionBlockEffects, - IotaTransactionBlockResponse, IotaTransactionBlockResponseOptions, - IotaTransactionBlockResponseQuery, ObjectsPage, ProtocolConfigResponse, TransactionBlocksPage, - TransactionFilter, + DryRunTransactionBlockResponse, DynamicFieldPage, IotaData, IotaGetPastObjectRequest, + IotaMoveNormalizedModule, IotaObjectDataOptions, IotaObjectResponse, IotaObjectResponseQuery, + IotaPastObjectResponse, IotaTransactionBlockEffects, IotaTransactionBlockResponse, + IotaTransactionBlockResponseOptions, IotaTransactionBlockResponseQuery, ObjectsPage, + ProtocolConfigResponse, TransactionBlocksPage, TransactionFilter, }; use iota_types::{ base_types::{IotaAddress, ObjectID, SequenceNumber, TransactionDigest}, @@ -33,8 +32,7 @@ use crate::{ error::{Error, IotaRpcResult}, }; -/// The main read API structure with functions for retrieving data about -/// different objects and transactions +/// Defines methods for retrieving data about objects and transactions. #[derive(Debug)] pub struct ReadApi { api: Arc<RpcClient>, @@ -44,12 +42,13 @@ impl ReadApi { pub(crate) fn new(api: Arc<RpcClient>) -> Self { Self { api } } - /// Return a paginated response with the objects owned by the given address, - /// or an error upon failure. + + /// Get the objects owned by the given address. Results are paginated. /// - /// Note that if the address owns more than `QUERY_MAX_RESULT_LIMIT` objects - /// (default is 50), the pagination is not accurate, because previous - /// page may have been updated when the next page is fetched. + /// Note that if the address owns more than + /// [`QUERY_MAX_RESULT_LIMIT`](iota_json_rpc_api::QUERY_MAX_RESULT_LIMIT) + /// objects (default is 50), the pagination may not be accurate as the + /// previous page may have been updated before the next page is fetched. /// /// # Examples /// @@ -84,16 +83,14 @@ impl ReadApi { .await?) } - /// Return a paginated response with the dynamic fields owned by the given - /// [ObjectID], or an error upon failure. + /// Get the dynamic fields owned by the given [ObjectID]. Results are + /// paginated. /// - /// The return type is a list of `DynamicFieldInfo` objects, where the field - /// name is always present, represented as a Move `Value`. + /// If the field is a dynamic field, this method returns the ID of the Field + /// object, which contains both the name and the value. /// - /// If the field is a dynamic field, returns the ID of the Field object - /// (which contains both the name and the value). If the field is a - /// dynamic object field, it returns the ID of the Object (the value of the - /// field). + /// If the field is a dynamic object field, it returns the ID of the Object, + /// which is the value of the field. /// /// # Examples /// @@ -141,7 +138,8 @@ impl ReadApi { .await?) } - /// Return the dynamic field object information for a specified object. + /// Get information for a specified dynamic field object by its parent + /// object ID and field name. pub async fn get_dynamic_field_object( &self, parent_object_id: ObjectID, @@ -154,13 +152,12 @@ impl ReadApi { .await?) } - /// Return a parsed past object for the provided [ObjectID] and version, or - /// an error upon failure. + /// Get a parsed past object and version for the provided object ID. /// - /// An object's version increases (though it is not guaranteed that it - /// increases always by 1) when the object is mutated. A past object can - /// be used to understand how the object changed over time, - /// i.e. what was the total balance at a specific version. + /// An object's version increases when the object is mutated, though it is + /// not guaranteed that it increases always by 1. A past object can be + /// used to understand how the object changed over time, i.e. what was + /// the total balance at a specific version. /// /// # Examples /// @@ -218,10 +215,9 @@ impl ReadApi { .await?) } - /// Return a list of [IotaPastObjectResponse] objects, or an error upon - /// failure. + /// Get a list of parsed past objects. /// - /// See [this function](ReadApi::try_get_parsed_past_object) for more + /// See [Self::try_get_parsed_past_object] for more /// details about past objects. /// /// # Examples @@ -298,14 +294,8 @@ impl ReadApi { .await?) } - /// Return an [IotaObjectResponse] based on the provided [ObjectID] and - /// [IotaObjectDataOptions], or an error upon failure. - /// - /// The [IotaObjectResponse] contains two fields: - /// 1) `data` for the object's data (see - /// [IotaObjectData](iota_json_rpc_types::IotaObjectData)), - /// 2) `error` for the error (if any) (see - /// [IotaObjectResponseError](iota_types::error::IotaObjectResponseError)). + /// Get an object by object ID with optional fields enabled by + /// [IotaObjectDataOptions]. /// /// # Examples /// @@ -357,12 +347,8 @@ impl ReadApi { Ok(self.api.http.get_object(object_id, Some(options)).await?) } - /// Return a list of [IotaObjectResponse] from the given vector of - /// [ObjectID]s and [IotaObjectDataOptions], or an error upon failure. - /// - /// If only one object is needed, use the - /// [get_object_with_options](ReadApi::get_object_with_options) function - /// instead. + /// Get a list of objects by their object IDs with optional fields enabled + /// by [IotaObjectDataOptions]. /// /// # Examples /// @@ -418,8 +404,7 @@ impl ReadApi { .await?) } - /// Return An object's bcs content [`Vec<u8>`] based on the provided - /// [ObjectID], or an error upon failure. + /// Get a [bcs] serialized object's bytes by object ID. pub async fn get_move_object_bcs(&self, object_id: ObjectID) -> IotaRpcResult<Vec<u8>> { let resp = self .get_object_with_options(object_id, IotaObjectDataOptions::default().with_bcs()) @@ -437,8 +422,7 @@ impl ReadApi { Ok(raw_move_obj.bcs_bytes) } - /// Return the total number of transaction blocks known to server, or an - /// error upon failure. + /// Get the total number of transaction blocks known to server. /// /// # Examples /// @@ -456,9 +440,8 @@ impl ReadApi { Ok(*self.api.http.get_total_transaction_blocks().await?) } - /// Return a transaction and its effects in an - /// [IotaTransactionBlockResponse] based on its [TransactionDigest], or - /// an error upon failure. + /// Get a transaction and its effects by its digest with optional fields + /// enabled by [IotaTransactionBlockResponseOptions]. pub async fn get_transaction_with_options( &self, digest: TransactionDigest, @@ -470,12 +453,9 @@ impl ReadApi { .get_transaction_block(digest, Some(options)) .await?) } - /// Return a list of [IotaTransactionBlockResponse] based on the given - /// vector of [TransactionDigest], or an error upon failure. - /// - /// If only one transaction data is needed, use the - /// [get_transaction_with_options](ReadApi::get_transaction_with_options) - /// function instead. + + /// Get a list of transactions and their effects by their digests with + /// optional fields enabled by [IotaTransactionBlockResponseOptions]. pub async fn multi_get_transactions_with_options( &self, digests: Vec<TransactionDigest>, @@ -488,36 +468,7 @@ impl ReadApi { .await?) } - /// Return the [IotaCommittee] information for the provided `epoch`, or an - /// error upon failure. - /// - /// The [IotaCommittee] contains the validators list and their information - /// (name and stakes). - /// - /// The argument `epoch` is either a known epoch id or `None` for the - /// current epoch. - /// - /// # Examples - /// - /// ```rust,no_run - /// use iota_sdk::IotaClientBuilder; - /// - /// #[tokio::main] - /// async fn main() -> Result<(), anyhow::Error> { - /// let iota = IotaClientBuilder::default().build_localnet().await?; - /// let committee_info = iota.read_api().get_committee_info(None).await?; - /// Ok(()) - /// } - /// ``` - pub async fn get_committee_info( - &self, - epoch: impl Into<Option<BigInt<u64>>>, - ) -> IotaRpcResult<IotaCommittee> { - Ok(self.api.http.get_committee_info(epoch.into()).await?) - } - - /// Return a paginated response with all transaction blocks information, or - /// an error upon failure. + /// Get filtered transaction blocks information. Results are paginated. pub async fn query_transaction_blocks( &self, query: IotaTransactionBlockResponseQuery, @@ -532,21 +483,18 @@ impl ReadApi { .await?) } - /// Return the first four bytes of the chain's genesis checkpoint digest, or - /// an error upon failure. + /// Get the first four bytes of the chain's genesis checkpoint digest in + /// hex format. pub async fn get_chain_identifier(&self) -> IotaRpcResult<String> { Ok(self.api.http.get_chain_identifier().await?) } - /// Return a checkpoint, or an error upon failure. - /// - /// A Iota checkpoint is a sequence of transaction sets that a quorum of - /// validators agree upon as having been executed within the Iota system. + /// Get a checkpoint by its ID. pub async fn get_checkpoint(&self, id: CheckpointId) -> IotaRpcResult<Checkpoint> { Ok(self.api.http.get_checkpoint(id).await?) } - /// Return a paginated list of checkpoints, or an error upon failure. + /// Return a list of checkpoints. Results are paginated. pub async fn get_checkpoints( &self, cursor: impl Into<Option<BigInt<u64>>>, @@ -560,8 +508,8 @@ impl ReadApi { .await?) } - /// Return the sequence number of the latest checkpoint that has been - /// executed, or an error upon failure. + /// Get the sequence number of the latest checkpoint that has been + /// executed. pub async fn get_latest_checkpoint_sequence_number( &self, ) -> IotaRpcResult<CheckpointSequenceNumber> { @@ -572,8 +520,7 @@ impl ReadApi { .await?) } - /// Return a stream of [IotaTransactionBlockResponse], or an error upon - /// failure. + /// Get a stream of transactions. pub fn get_transactions_stream( &self, query: IotaTransactionBlockResponseQuery, @@ -625,8 +572,7 @@ impl ReadApi { Ok(subscription.map(|item| Ok(item?))) } - /// Return a map consisting of the move package name and the normalized - /// module, or an error upon failure. + /// Get move modules by package ID, keyed by name. pub async fn get_normalized_move_modules_by_package( &self, package: ObjectID, @@ -639,18 +585,18 @@ impl ReadApi { } // TODO(devx): we can probably cache this given an epoch - /// Return the reference gas price, or an error upon failure. + /// Get the reference gas pric. pub async fn get_reference_gas_price(&self) -> IotaRpcResult<u64> { Ok(*self.api.http.get_reference_gas_price().await?) } - /// Dry run a transaction block given the provided transaction data. Returns - /// an error upon failure. + /// Dry run a transaction block given the provided transaction data. /// - /// Simulate running the transaction, including all standard checks, without - /// actually running it. This is useful for estimating the gas fees of a - /// transaction before executing it. You can also use it to identify any - /// side-effects of a transaction before you execute it on the network. + /// This simulates running the transaction, including all standard checks, + /// without actually running it. This is useful for estimating the gas + /// fees of a transaction before executing it. You can also use it to + /// identify any side-effects of a transaction before you execute it on + /// the network. pub async fn dry_run_transaction_block( &self, tx: TransactionData, @@ -662,33 +608,29 @@ impl ReadApi { .await?) } - /// Return the inspection of the transaction block, or an error upon - /// failure. - /// /// Use this function to inspect the current state of the network by running /// a programmable transaction block without committing its effects on - /// chain. Unlike - /// [dry_run_transaction_block](ReadApi::dry_run_transaction_block), - /// dev inspect will not validate whether the transaction block - /// would succeed or fail under normal circumstances, e.g.: + /// chain. + /// + /// Unlike a dry run, this method will not validate whether the transaction + /// block would succeed or fail under normal circumstances, e.g.: /// /// - Transaction inputs are not checked for ownership (i.e. you can - /// construct calls involving objects you do not own). + /// construct calls involving objects you do not own) /// - Calls are not checked for visibility (you can call private functions /// on modules) - /// - Inputs of any type can be constructed and passed in, (including Coins + /// - Inputs of any type can be constructed and passed in, including coins /// and other objects that would usually need to be constructed with a - /// move call). + /// move call /// - Function returns do not need to be used, even if they do not have - /// `drop`. + /// `drop` /// - /// Dev inspect's output includes a breakdown of results returned by every + /// This method's output includes a breakdown of results returned by every /// transaction in the block, as well as the transaction's effects. /// /// To run an accurate simulation of a transaction and understand whether - /// it will successfully validate and run, - /// use the [dry_run_transaction_block](ReadApi::dry_run_transaction_block) - /// function instead. + /// it will successfully validate and run, use + /// [Self::dry_run_transaction_block] instead. pub async fn dev_inspect_transaction_block( &self, sender_address: IotaAddress, @@ -710,7 +652,9 @@ impl ReadApi { .await?) } - /// Return the protocol config, or an error upon failure. + /// Get the protocol config by version. + /// + /// The version defaults to the current version. pub async fn get_protocol_config( &self, version: impl Into<Option<BigInt<u64>>>, @@ -718,6 +662,7 @@ impl ReadApi { Ok(self.api.http.get_protocol_config(version.into()).await?) } + /// Get an object by ID before the given version. pub async fn try_get_object_before_version( &self, object_id: ObjectID, diff --git a/crates/iota-sdk/src/error.rs b/crates/iota-sdk/src/error.rs index a7231c76870..258ffe7e86a 100644 --- a/crates/iota-sdk/src/error.rs +++ b/crates/iota-sdk/src/error.rs @@ -28,8 +28,8 @@ pub enum Error { client_version: String, server_version: String, }, - #[error("Insufficient fund for address [{address}], requested amount: {amount}")] - InsufficientFund { address: IotaAddress, amount: u128 }, + #[error("Insufficient funds for address [{address}], requested amount: {amount}")] + InsufficientFunds { address: IotaAddress, amount: u128 }, #[error(transparent)] Json(#[from] serde_json::Error), } diff --git a/crates/iota-sdk/src/lib.rs b/crates/iota-sdk/src/lib.rs index 27ed64393c5..b6f4e03b537 100644 --- a/crates/iota-sdk/src/lib.rs +++ b/crates/iota-sdk/src/lib.rs @@ -34,14 +34,14 @@ //! folder of your Rust project. //! //! The main building block for the Iota Rust SDK is the [IotaClientBuilder], -//! which provides a simple and straightforward way of connecting to a Iota +//! which provides a simple and straightforward way of connecting to an Iota //! network and having access to the different available APIs. //! -//! A simple example that connects to a running Iota local network, -//! the Iota devnet, and the Iota testnet is shown below. +//! Below is a simple example which connects to a running Iota local network, +//! devnet, and testnet. //! To successfully run this program, make sure to spin up a local //! network with a local validator, a fullnode, and a faucet server -//! (see [here](https://github.com/iotaledger/iota/tree/develop/crates/iota-sdk/README.md#prerequisites) for more information). +//! (see [the README](https://github.com/iotaledger/iota/tree/develop/crates/iota-sdk/README.md#prerequisites) for more information). //! //! ```rust,no_run //! use iota_sdk::IotaClientBuilder; @@ -71,7 +71,7 @@ //! ## Examples //! //! For detailed examples, please check the APIs docs and the examples folder -//! in the [main repository](https://github.com/iotaledger/iota/tree/main/crates/iota-sdk/examples). +//! in the [repository](https://github.com/iotaledger/iota/tree/main/crates/iota-sdk/examples). pub mod apis; pub mod error; @@ -121,13 +121,13 @@ pub const IOTA_LOCAL_NETWORK_GAS_URL: &str = "http://127.0.0.1:5003/gas"; pub const IOTA_DEVNET_URL: &str = "https://fullnode.devnet.iota.io:443"; pub const IOTA_TESTNET_URL: &str = "https://fullnode.testnet.iota.io:443"; -/// A Iota client builder for connecting to the Iota network +/// Builder for creating an [IotaClient] for connecting to the Iota network. /// -/// By default the `maximum concurrent requests` is set to 256 and -/// the `request timeout` is set to 60 seconds. These can be adjusted using the -/// `max_concurrent_requests` function, and the `request_timeout` function. -/// If you use the WebSocket, consider setting the `ws_ping_interval` field to a -/// value of your choice to prevent the inactive WS subscription being +/// By default `maximum concurrent requests` is set to 256 and `request timeout` +/// is set to 60 seconds. These can be adjusted using +/// [`Self::max_concurrent_requests()`], and the [`Self::request_timeout()`]. +/// If you use the WebSocket, consider setting `ws_ping_interval` +/// appropriately to prevent an inactive WS subscription being /// disconnected due to proxy timeout. /// /// # Examples @@ -195,8 +195,8 @@ impl IotaClientBuilder { self } - /// Returns an [IotaClient] object connected to the Iota network running at - /// the URI provided. + /// Return an [IotaClient] object connected to the Iota network accessable + /// via the provided URI. /// /// # Examples /// @@ -399,8 +399,8 @@ impl IotaClientBuilder { } } -/// IotaClient is the basic type that provides all the necessary abstractions -/// for interacting with the Iota network. +/// Provides all the necessary abstractions for interacting with the Iota +/// network. /// /// # Usage /// diff --git a/crates/iota-swarm-config/tests/snapshots/snapshot_tests__populated_genesis_snapshot_matches-2.snap b/crates/iota-swarm-config/tests/snapshots/snapshot_tests__populated_genesis_snapshot_matches-2.snap index 315553572f5..182f6952a5e 100644 --- a/crates/iota-swarm-config/tests/snapshots/snapshot_tests__populated_genesis_snapshot_matches-2.snap +++ b/crates/iota-swarm-config/tests/snapshots/snapshot_tests__populated_genesis_snapshot_matches-2.snap @@ -8,7 +8,7 @@ system_state_version: 1 iota_treasury_cap: inner: id: - id: "0xe331a811670a6d6a1b460031cf1b5d4d4932e49c7f518847c0983036800ff005" + id: "0x8ee3de003e49874de1d4a8fa31fa832590f9d4182e9020bc43b5cc409567cea1" total_supply: value: "751500000000000000" validators: @@ -244,13 +244,13 @@ validators: next_epoch_primary_address: ~ extra_fields: id: - id: "0x7b07cffe62f4aa8e9085d92a9d323db680a71946a4f617150f94630e1d3ea7fd" + id: "0xc0c92dca5d810238a2def5421799b42f719718c817962b73b2e22aae0304813f" size: 0 voting_power: 10000 - operation_cap_id: "0x5d385e19014eb37a0ce095545d9c4cee77722eb2d650b04895dabcb99ff0dbed" + operation_cap_id: "0x344b856173dc92e3ba4989d2e5f96e654086510778d7427b90548b3f92a51b28" gas_price: 1000 staking_pool: - id: "0x17d69dd78398cdcbe8f96cc66f3e85913bbbec5c3d5a477edd5d79d78f275330" + id: "0xec70e0dfed9c09450a1803d08e95aa7042551fe8ae02f8f0c49ffd8843ab6825" activation_epoch: 0 deactivation_epoch: ~ iota_balance: 1500000000000000 @@ -258,14 +258,14 @@ validators: value: 0 pool_token_balance: 1500000000000000 exchange_rates: - id: "0xf6c3a2556d9d3845c6f68e4e94f9af2f59f78062785be394760458ba02680701" + id: "0xd6886942b693bc96873dc1ebabda3e2a0be80e6ab48cf2f124ba99cbd52b8731" size: 1 pending_stake: 0 pending_total_iota_withdraw: 0 pending_pool_token_withdraw: 0 extra_fields: id: - id: "0x5b33caef1881418752c23068d1c38a676331f399391e851ab38edcdc0298dddd" + id: "0x6ccdb5ea633e0d8126f63a4430dcbd3b5651be4d19a74b27a1a0f043d400160c" size: 0 commission_rate: 200 next_epoch_stake: 1500000000000000 @@ -273,27 +273,27 @@ validators: next_epoch_commission_rate: 200 extra_fields: id: - id: "0xb7c793e75a4f00ba939b873936a617e3b4e9879e8f5bbd2b4241841d57561ab2" + id: "0x22c6efa1e6f62025a5e873e19b4d75b7beef6f548bab11a5b3b8230ad022a525" size: 0 pending_active_validators: contents: - id: "0xf8a031f43a0542aefa7ebc136d0299f326cd255951e05cbf3c1d4fc9f8a2212a" + id: "0xebea5fffa12449a0e44a6b69ed50954d05ad3b642627ae2fe494ac9b6bd730e8" size: 0 pending_removals: [] staking_pool_mappings: - id: "0x593f187df19dee94ae17e86d84dce09d08489107da36465aa3c7805e2fbcbe81" + id: "0x745dca4b1b492018030c48099ceac35209d86cd297345d63a0178175ceca9537" size: 1 inactive_validators: - id: "0x84cad02db4e97444516fb5f74c21e9a0e3f8dd78789664fc993f40427260d20e" + id: "0xa1d5e645e4394a79b28c4a2b4bb8489082ceba2fb9f697251c6c2b854387d91a" size: 0 validator_candidates: - id: "0xbc952765f05c93713d482040e82e48dc5072550e5e27d8e5a676b2c7f7469850" + id: "0x7075d6832dcaca69cccd9a195b7d319a60b4fc20c31bdc4c3b4b4990a759afca" size: 0 at_risk_validators: contents: [] extra_fields: id: - id: "0x2f3767021062064e4df4dc570ae94c4346868b5b603159be59168a76a3d456c9" + id: "0x582b6b19ad273a7854f88b5bc9f59f41a95097c9d90520d58fad9e1756d0b568" size: 0 storage_fund: total_object_storage_rebates: @@ -310,7 +310,7 @@ parameters: validator_low_stake_grace_period: 7 extra_fields: id: - id: "0x6f4aaf0d4e11391a7b418bc1b428e088a27f6ea3b7a4a5b3ba6250fca99ae6a9" + id: "0x7e23101a784edba2707785480b6bb5e0e9c5cd43c69023f880e753eada10cafc" size: 0 reference_gas_price: 1000 validator_report_records: @@ -325,5 +325,5 @@ safe_mode_non_refundable_storage_fee: 0 epoch_start_timestamp_ms: 10 extra_fields: id: - id: "0xd6fd25d4433d7392eb6634bf8f22b1a9604721a4574326f638d2806d26326892" + id: "0x16d6794561f461433658a0ff5fee8eafd4dfc42f7c36168b705829c59318fadc" size: 0 diff --git a/crates/iota-types/src/stardust/capped_coin.rs b/crates/iota-types/src/stardust/capped_coin.rs deleted file mode 100644 index f42f4e88f6b..00000000000 --- a/crates/iota-types/src/stardust/capped_coin.rs +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2024 IOTA Stiftung -// SPDX-License-Identifier: Apache-2.0 - -use schemars::JsonSchema; -use serde::{Deserialize, Serialize}; - -use crate::{coin::TreasuryCap, id::UID}; - -/// The policy wrapper that ensures the supply of a `Coin` never exceeds the -/// maximum supply. -#[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq, JsonSchema)] -pub struct MaxSupplyPolicy { - pub id: UID, - pub maximum_supply: u64, - pub treasury_cap: TreasuryCap, -} diff --git a/crates/iota-types/src/stardust/mod.rs b/crates/iota-types/src/stardust/mod.rs index 5a02a57be62..fc1cc0a787d 100644 --- a/crates/iota-types/src/stardust/mod.rs +++ b/crates/iota-types/src/stardust/mod.rs @@ -2,7 +2,6 @@ // SPDX-License-Identifier: Apache-2.0 pub mod address; -pub mod capped_coin; pub mod coin_kind; pub mod coin_type; pub mod error; diff --git a/crates/iota/src/fire_drill.rs b/crates/iota/src/fire_drill.rs index 9588788a3d7..371ccc33407 100644 --- a/crates/iota/src/fire_drill.rs +++ b/crates/iota/src/fire_drill.rs @@ -362,5 +362,9 @@ async fn wait_for_next_epoch( } async fn current_epoch(iota_client: &IotaClient) -> anyhow::Result<EpochId> { - Ok(iota_client.read_api().get_committee_info(None).await?.epoch) + Ok(iota_client + .governance_api() + .get_committee_info(None) + .await? + .epoch) } diff --git a/deny.toml b/deny.toml index c9b6cb32a5d..d572a2fd3cf 100644 --- a/deny.toml +++ b/deny.toml @@ -83,6 +83,7 @@ allow = [ "Unlicense", "BSL-1.0", "Unicode-DFS-2016", + "OpenSSL", # "Apache-2.0 WITH LLVM-exception", ] # The confidence threshold for detecting a license from license text. @@ -93,7 +94,7 @@ confidence-threshold = 0.8 # Allow 1 or more licenses on a per-crate basis, so that particular licenses # aren't accepted for every possible crate as with the normal allow list exceptions = [ - + { allow = ["GPL-2.0"], name = "mysqlclient-src" }, # Each entry is the crate and version constraint, and its specific allow # list diff --git a/kiosk/LICENSE b/kiosk/LICENSE new file mode 100644 index 00000000000..261eeb9e9f8 --- /dev/null +++ b/kiosk/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/kiosk/Move.toml b/kiosk/Move.toml new file mode 100644 index 00000000000..aee933af890 --- /dev/null +++ b/kiosk/Move.toml @@ -0,0 +1,9 @@ +[package] +name = "Kiosk" +version = "0.0.1" + +[dependencies] +Iota = { local = "../crates/iota-framework/packages/iota-framework" } + +[addresses] +kiosk = "0x0" diff --git a/kiosk/README.md b/kiosk/README.md deleted file mode 100644 index 5c7bdd483e1..00000000000 --- a/kiosk/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Kiosk App - -The code has been moved to a separate repository. Please, go to [iotaledger/apps](https://github.com/iotaledger/apps) for the source code for Kiosk Package. diff --git a/kiosk/docs/creating_a_rule_guide.md b/kiosk/docs/creating_a_rule_guide.md new file mode 100644 index 00000000000..dd96434af19 --- /dev/null +++ b/kiosk/docs/creating_a_rule_guide.md @@ -0,0 +1,226 @@ +# Creating a Rule: Guide + +When an item is purchased in a Kiosk, a TransferRequest potato is created, and the only way to resolve it and unblock the transaction is to confirm the request in the matching TransferPolicy. This guide explains how TransferPolicy works and how new rules can be implemented and added into a policy. + +## Basics + +An item of a type T can only be traded in Kiosks if the TransferPolicy for T exists and available to the buyer. This requirement is based on a simple fact that the TransferRequest issued on purchase must be resolved in a matching TransferPolicy and if there isn't one or buyer can't access it, the transaction will fail. + +This system was designed to give maximum freedom and flexibility for creators: by taking the transfer policy logic out of the trading primitive we make sure that the policies can be set only by creators, and as long as the trading primitive is used, enforcements are under their control. Effectively creators became closer to the trading ecosystem and got an important and solid role in the process. + +## Architecture + +By default, a single TransferPolicy does not enforce anything - if a buyer attempts to confirm their TransferRequest, it will go through. However, the system allows setting so-called "Rules". Their logic is simple: someone can publish a new rule module, for example "fixed fee", and let it be "added" or "set" for the TransferPolicy. Once the Rule is added, TransferRequest needs to collect a TransferReceipt marking that the requirement specified in the Rule was completed. + +- Once a Rule is added to the TransferPolicy, every TransferRequest going to the policy must have a matching Receipt + +## Rule structure: Dummy + +Every rule would follow the same structure and implement required types: + +1. RuleWitness struct +2. Config struct stored in the TransferPolicy +3. "set" function which adds the Rule to the TP +4. an action function which adds a Receipt to the TransferRequest + +> Important: there's no need to implement "unset" - any rule can be removed at any time as defined in the TransferPolicy module and guaranteed by the set of constraints on the rule Config (store + drop) + +```move +module examples::dummy_rule { + use iota::coin::Coin; + use iota::iota::IOTA; + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + /// The Rule Witness; has no fields and is used as a + /// static authorization method for the rule. + struct Rule has drop {} + + /// Configuration struct with any fields (as long as it + /// has `drop`). Managed by the Rule module. + struct Config has store, drop {} + + /// Function that adds a Rule to the `TransferPolicy`. + /// Requires `TransferPolicyCap` to make sure the rules are + /// added only by the publisher of T. + public fun set<T>( + policy: &mut TransferPolicy<T>, + cap: &TransferPolicyCap<T> + ) { + policy::add_rule(Rule {}, policy, cap, Config {}) + } + + /// Action function - perform a certain action (any, really) + /// and pass in the `TransferRequest` so it gets the Receipt. + /// Receipt is a Rule Witness, so there's no way to create + /// it anywhere else but in this module. + /// + /// This example also illustrates that Rules can add Coin<IOTA> + /// to the balance of the TransferPolicy allowing creators to + /// collect fees. + public fun pay<T>( + policy: &mut TransferPolicy<T>, + request: &mut TransferRequest<T>, + payment: Coin<IOTA> + ) { + policy::add_to_balance(Rule {}, policy, payment); + policy::add_receipt(Rule {}, request); + } +} +``` + +This module contains no configuration and requires a `Coin<IOTA>` of any value (even "0"), so it's easy to imagine that every buyer would create a zero Coin and pass it to get the Receipt. The only thing this Rule module is good for is illustration and a skeleton. Goes without saying but _this code should never be used in production_. + +## Reading the Request: Royalty + +To implement a percentage-based fee (a very common scenario - royalty fee), a Rule module needs to know the price for which an item was purchased. And the TransferRequest contains some information which can be used in this and other scenarios: + +1. Item ID +2. Amount paid (IOTA) +3. From ID - the object which was used for selling (eg Kiosk) + +> To provide access to these fields, the `iota::transfer_policy` module has a set of getter functions which are available to anyone: "paid()", "item()" and "from()" + +```move +module examples::royalty_rule { + // skipping dependencies + const MAX_BP: u16 = 10_000; + + struct Rule has drop {} + + /// In this implementation Rule has a configuration - `amount_bp` + /// which is the percentage of the `paid` in basis points. + struct Config has store, drop { amount_bp: u16 } + + /// When a Rule is added, configuration details are specified + public fun set<T>( + policy: &mut TransferPolicy<T>, + cap: &TransferPolicyCap<T>, + amount_bp: u16 + ) { + assert!(amount_bp <= MAX_BP, 0); + policy::add_rule(Rule {}, policy, cap, Config { amount_bp }) + } + + /// To get the Receipt, the buyer must call this function and pay + /// the required amount; the amount is calculated dynamically and + /// it is more convenient to use a mutable reference + public fun pay<T>( + policy: &mut TransferPolicy<T>, + request: &mut TransferRequest<T>, + payment: &mut Coin<IOTA>, + ctx: &mut TxContext + ) { + // using the getter to read the paid amount + let paid = policy::paid(request); + let config: &Config = policy::get_rule(Rule {}, policy); + let amount = (((paid as u128) * (config.amount_bp as u128) / MAX_BP) as u64); + assert!(coin::value(payment) >= amount, EInsufficientAmount); + + let fee = coin::split(payment, amount, ctx); + policy::add_to_balance(Rule {}, policy, fee); + policy::add_receipt(Rule {}, request) + } +} +``` + +## Time is also Money + +Rules don't need to be only for payments and fees. Some might allow trading before or after a certain time. Since Rules are not standardized and can use anything, developers can encode logic around using any objects. + +```move +module examples::time_rule { + // skipping some dependencies + use iota::clock::{Self, Clock}; + + struct Rule has drop {} + struct Config has store, drop { start_time: u64 } + + /// Start time is yet to come + const ETooSoon: u64 = 0; + + /// Add a Rule that enables purchases after a certain time + public fun set<T>(/* skip default fields */, start_time: u64) { + policy::add_rule(Rule {}, policy, cap, Config { start_time }) + } + + /// Pass in the Clock and prove that current time value is higher + /// than the `start_time` + public fun confirm_time<T>( + policy: &TransferPolicy<T>, + request: &mut TransferRequest<T>, + clock: &Clock + ) { + let config: &Config = policy::get_rule(Rule {}, policy) + assert!(clock::timestamp_ms(clock) >= config.start_time, ETooSoon); + policy::add_receipt(Rule {}, request) + } +} +``` + +## Generalizing approach: Witness policy + +Iota Move has two main ways for authorizing an action: static - by using the Witness pattern, and dynamic - via the Capability pattern. With a small addition of type parameters to the Rule, it is possible to create a _generic Rule_ which will not only vary by configuration but also by the type of the Rule. + +```move +module examples::witness_rule { + // skipping dependencies + + /// Rule is either not set or the Witness does not match the expectation + const ERuleNotSet: u64 = 0; + + /// This Rule requires a witness of type W, see the implementation + struct Rule<phantom W> has drop {} + struct Config has store, drop {} + + /// No special arguments are required to set this Rule, but the + /// publisher now needs to specify a Witness type + public fun set<T, W>(/* .... */) { + policy::add_rule(Rule<W> {}, policy, cap, Config {}) + } + + /// To confirm the action, buyer needs to pass in a witness + /// which should be acquired either by calling some function or + /// integrated into a more specific hook of a marketplace / + /// trading module + public fun confirm<T, W>( + _: W, + policy: &TransferPolicy<T>, + request: &mut TransferRequest<T> + ) { + assert!(policy::has_rule<T, Rule<W>>(policy), ERuleNotSet); + policy::add_receipt(Rule<W> {}, request) + } +} +``` + +The "witness_rule" is very generic and can be used to require a custom Witness depending on the settings. It is a simple and yet a powerful way to link a custom marketplace / trading logic to the TransferPolicy. With a slight modification, the rule can be turned into a generic Capability requirement (basically any object, even a TransferPolicy for a different type or a TransferRequest - no limit to what could be done). + +```move +module examples::capability_rule { + // skipping dependencies + + /// Changing the type parameter name for better readability + struct Rule<phantom Cap> has drop {} + struct Config {} + + /// Absolutely identical to the witness setting + public fun set<T, Cap>(/* ... *) { + policy::add_rule(Rule<Cap> {}, policy, cap, Config {}) + } + + /// Almost the same with the Witness requirement, only now we + /// require a reference to the type. + public fun confirm<T, Cap>( + cap: &Cap, + /* ... */ + ) { + assert!(policy::has_rule<T, Rule<Cap>>(policy), ERuleNotSet); + policy::add_receipt(Rule<Cap> {}, request) + } +} +``` diff --git a/kiosk/sources/extensions/personal_kiosk.move b/kiosk/sources/extensions/personal_kiosk.move new file mode 100644 index 00000000000..fa40500d6a0 --- /dev/null +++ b/kiosk/sources/extensions/personal_kiosk.move @@ -0,0 +1,141 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module provides a wrapper for the KioskOwnerCap that makes the Kiosk +/// non-transferable and "owned". +/// +module kiosk::personal_kiosk { + use std::option::{Self, Option}; + use iota::transfer; + use iota::kiosk::{Self, Kiosk, KioskOwnerCap}; + use iota::object::{Self, ID, UID}; + use iota::tx_context::{sender, TxContext}; + use iota::dynamic_field as df; + + /// Trying to return the Cap / Borrow to a wrong PersonalKioskCap object. + const EIncorrectCapObject: u64 = 0; + /// Trying to return the Cap / Borrow to a wrong PersonalKioskCap object. + const EIncorrectOwnedObject: u64 = 1; + /// Trying to get the owner of a non-personal Kiosk. + const EKioskNotOwned: u64 = 2; + /// Trying to make a someone else's Kiosk "personal". + const EWrongKiosk: u64 = 3; + + /// A key-only wrapper for the KioskOwnerCap. Makes sure that the Kiosk can + /// not be traded altogether with its contents. + struct PersonalKioskCap has key { + id: UID, + cap: Option<KioskOwnerCap> + } + + /// The hot potato making sure the KioskOwnerCap is returned after borrowing. + struct Borrow { cap_id: ID, owned_id: ID } + + /// The dynamic field to mark the Kiosk as owned (to allow guaranteed owner + /// checks through the Kiosk). + struct OwnerMarker has copy, store, drop {} + + /// Event that is emitted when a new PersonalKioskCap is created. The sender + /// of the transaction is always the new Kiosk Owner. + struct NewPersonalKiosk has copy, drop { kiosk_id: ID } + + /// The default setup for the PersonalKioskCap. + entry fun default(kiosk: &mut Kiosk, cap: KioskOwnerCap, ctx: &mut TxContext) { + transfer_to_sender(new(kiosk, cap, ctx), ctx); + } + + /// Wrap the KioskOwnerCap making the Kiosk "owned" and non-transferable. + /// The `PersonalKioskCap` is returned to allow chaining within a PTB, but + /// the value must be consumed by the `transfer_to_sender` call in any case. + public fun new( + kiosk: &mut Kiosk, cap: KioskOwnerCap, ctx: &mut TxContext + ): PersonalKioskCap { + assert!(kiosk::has_access(kiosk, &cap), EWrongKiosk); + + let owner = sender(ctx); + + // set the owner property of the Kiosk + kiosk::set_owner(kiosk, &cap, ctx); + + // add the owner marker to the Kiosk; uses `_as_owner` to always pass, + // even if Kiosk "allow_extensions" is set to false + df::add( + kiosk::uid_mut_as_owner(kiosk, &cap), + OwnerMarker {}, + owner + ); + + iota::event::emit(NewPersonalKiosk { + kiosk_id: object::id(kiosk) + }); + + // wrap the Cap in the `PersonalKioskCap` + PersonalKioskCap { + id: object::new(ctx), + cap: option::some(cap) + } + } + + /// Borrow the `KioskOwnerCap` from the `PersonalKioskCap` object. + public fun borrow(self: &PersonalKioskCap): &KioskOwnerCap { + option::borrow(&self.cap) + } + + /// Mutably borrow the `KioskOwnerCap` from the `PersonalKioskCap` object. + public fun borrow_mut(self: &mut PersonalKioskCap): &mut KioskOwnerCap { + option::borrow_mut(&mut self.cap) + } + + /// Borrow the `KioskOwnerCap` from the `PersonalKioskCap` object; `Borrow` + /// hot-potato makes sure that the Cap is returned via `return_val` call. + public fun borrow_val( + self: &mut PersonalKioskCap + ): (KioskOwnerCap, Borrow) { + let cap = option::extract(&mut self.cap); + let id = object::id(&cap); + + (cap, Borrow { + owned_id: object::id(self), + cap_id: id + }) + } + + /// Return the Cap to the PersonalKioskCap object. + public fun return_val( + self: &mut PersonalKioskCap, cap: KioskOwnerCap, borrow: Borrow + ) { + let Borrow { owned_id, cap_id } = borrow; + assert!(object::id(self) == owned_id, EIncorrectOwnedObject); + assert!(object::id(&cap) == cap_id, EIncorrectCapObject); + + option::fill(&mut self.cap, cap) + } + + /// Check if the Kiosk is "personal". + public fun is_personal(kiosk: &Kiosk): bool { + df::exists_(kiosk::uid(kiosk), OwnerMarker {}) + } + + /// Get the owner of the Kiosk if the Kiosk is "personal". Aborts otherwise. + public fun owner(kiosk: &Kiosk): address { + assert!(is_personal(kiosk), EKioskNotOwned); + *df::borrow(kiosk::uid(kiosk), OwnerMarker {}) + } + + /// Try to get the owner of the Kiosk if the Kiosk is "personal". Returns + /// None otherwise. + public fun try_owner(kiosk: &Kiosk): Option<address> { + if (is_personal(kiosk)) { + option::some(owner(kiosk)) + } else { + option::none() + } + } + + /// Transfer the `PersonalKioskCap` to the transaction sender. + public fun transfer_to_sender(self: PersonalKioskCap, ctx: &mut TxContext) { + transfer::transfer(self, sender(ctx)); + } +} diff --git a/kiosk/sources/rules/floor_price_rule.move b/kiosk/sources/rules/floor_price_rule.move new file mode 100644 index 00000000000..419fa2d5793 --- /dev/null +++ b/kiosk/sources/rules/floor_price_rule.move @@ -0,0 +1,57 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module defines a Rule which sets the floor price for items of type T. +/// +/// Configuration: +/// - floor_price - the floor price in nano. +/// +/// Use cases: +/// - Defining a floor price for all trades of type T. +/// - Prevent trading of locked items with low amounts (e.g. by using purchase_cap). +/// +module kiosk::floor_price_rule { + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + /// The price was lower than the floor price. + const EPriceTooSmall: u64 = 0; + + /// The "Rule" witness to authorize the policy. + struct Rule has drop {} + + /// Configuration for the `Floor Price Rule`. + /// It holds the minimum price that an item can be sold at. + /// There can't be any sales with a price < than the floor_price. + struct Config has store, drop { + floor_price: u64 + } + + /// Creator action: Add the Floor Price Rule for the `T`. + /// Pass in the `TransferPolicy`, `TransferPolicyCap` and `floor_price`. + public fun add<T>( + policy: &mut TransferPolicy<T>, + cap: &TransferPolicyCap<T>, + floor_price: u64 + ) { + policy::add_rule(Rule {}, policy, cap, Config { floor_price }) + } + + /// Buyer action: Prove that the amount is higher or equal to the floor_price. + public fun prove<T>( + policy: &mut TransferPolicy<T>, + request: &mut TransferRequest<T> + ) { + let config: &Config = policy::get_rule(Rule {}, policy); + + assert!(policy::paid(request) >= config.floor_price, EPriceTooSmall); + + policy::add_receipt(Rule {}, request) + } +} diff --git a/kiosk/sources/rules/kiosk_lock_rule.move b/kiosk/sources/rules/kiosk_lock_rule.move new file mode 100644 index 00000000000..43b9d463e23 --- /dev/null +++ b/kiosk/sources/rules/kiosk_lock_rule.move @@ -0,0 +1,54 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module defines a Rule which forces buyers to put the purchased +/// item into the Kiosk and lock it. The most common use case for the +/// Rule is making sure an item never leaves Kiosks and has policies +/// enforced on every transfer. +/// +/// Configuration: +/// - None +/// +/// Use cases: +/// - Enforcing policies on every trade +/// - Making sure an item never leaves the Kiosk / certain ecosystem +/// +/// Notes: +/// - "locking" mechanic disallows the `kiosk::take` function and forces +/// the owner to use `list` or `list_with_purchase_cap` methods if they +/// wish to move the item somewhere else. +/// +module kiosk::kiosk_lock_rule { + use iota::kiosk::{Self, Kiosk}; + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + /// Item is not in the `Kiosk`. + const ENotInKiosk: u64 = 0; + + /// The type identifier for the Rule. + struct Rule has drop {} + + /// An empty configuration for the Rule. + struct Config has store, drop {} + + /// Creator: Adds a `kiosk_lock_rule` Rule to the `TransferPolicy` forcing + /// buyers to lock the item in a Kiosk on purchase. + public fun add<T>(policy: &mut TransferPolicy<T>, cap: &TransferPolicyCap<T>) { + policy::add_rule(Rule {}, policy, cap, Config {}) + } + + /// Buyer: Prove the item was locked in the Kiosk to get the receipt and + /// unblock the transfer request confirmation. + public fun prove<T>(request: &mut TransferRequest<T>, kiosk: &Kiosk) { + let item = policy::item(request); + assert!(kiosk::has_item(kiosk, item) && kiosk::is_locked(kiosk, item), ENotInKiosk); + policy::add_receipt(Rule {}, request) + } +} diff --git a/kiosk/sources/rules/personal_kiosk_rule.move b/kiosk/sources/rules/personal_kiosk_rule.move new file mode 100644 index 00000000000..6c18e471b7f --- /dev/null +++ b/kiosk/sources/rules/personal_kiosk_rule.move @@ -0,0 +1,54 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module defines a Rule which checks that the Kiosk is "personal" meaning +/// that the owner cannot change. By default, `KioskOwnerCap` can be transferred +/// and owned by an application therefore the owner of the Kiosk is not fixed. +/// +/// Configuration: +/// - None +/// +/// Use cases: +/// - Strong royalty enforcement - personal Kiosks cannot be transferred with +/// the assets inside which means that the item will never change the owner. +/// +/// Notes: +/// - Combination of `kiosk_lock_rule` and `personal_kiosk_rule` can be used to +/// enforce policies on every trade (item can be transferred only through a +/// trade + Kiosk is fixed to the owner). +/// +module kiosk::personal_kiosk_rule { + use iota::kiosk::{Self, Kiosk}; + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + use kiosk::personal_kiosk; + + /// An item hasn't been placed into the Kiosk before the call. + const EItemNotInKiosk: u64 = 0; + /// The Kiosk is not owned; the OwnerMarker is not present. + const EKioskNotOwned: u64 = 1; + + /// The Rule checking that the Kiosk is an owned one. + struct Rule has drop {} + + /// Add the "owned" rule to the KioskOwnerCap. + public fun add<T>(policy: &mut TransferPolicy<T>, cap: &TransferPolicyCap<T>) { + policy::add_rule(Rule {}, policy, cap, true) + } + + /// Make sure that the destination Kiosk has the Owner key. Item is already + /// placed by the time this check is performed - otherwise fails. + public fun prove<T>(kiosk: &Kiosk, request: &mut TransferRequest<T>) { + assert!(kiosk::has_item(kiosk, policy::item(request)), EItemNotInKiosk); + assert!(personal_kiosk::is_personal(kiosk), EKioskNotOwned); + + policy::add_receipt(Rule {}, request) + } +} diff --git a/kiosk/sources/rules/royalty_rule.move b/kiosk/sources/rules/royalty_rule.move new file mode 100644 index 00000000000..348ba0e0fbe --- /dev/null +++ b/kiosk/sources/rules/royalty_rule.move @@ -0,0 +1,105 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module defines a Rule which requires a payment on a purchase. +/// The payment amount can be either a fixed amount (min_amount) or a +/// percentage of the purchase price (amount_bp). Or both: the higher +/// of the two is used. +/// +/// Configuration: +/// - amount_bp - the percentage of the purchase price to be paid as a +/// fee, denominated in basis points (100_00 = 100%, 1 = 0.01%). +/// - min_amount - the minimum amount to be paid as a fee if the relative +/// amount is lower than this setting. +/// +/// Use cases: +/// - Percentage-based Royalty fee for the creator of the NFT. +/// - Fixed commission fee on a trade. +/// - A mix of both: the higher of the two is used. +/// +/// Notes: +/// - To use it as a fixed commission set the `amount_bp` to 0 and use the +/// `min_amount` to set the fixed amount. +/// - To use it as a percentage-based fee set the `min_amount` to 0 and use +/// the `amount_bp` to set the percentage. +/// - To use it as a mix of both set the `min_amount` to the min amount +/// acceptable and the `amount_bp` to the percentage of the purchase price. +/// The higher of the two will be used. +/// +module kiosk::royalty_rule { + use iota::iota::IOTA; + use iota::coin::{Self, Coin}; + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + /// The `amount_bp` passed is more than 100%. + const EIncorrectArgument: u64 = 0; + /// The `Coin` used for payment is not enough to cover the fee. + const EInsufficientAmount: u64 = 1; + + /// Max value for the `amount_bp`. + const MAX_BPS: u16 = 10_000; + + /// The "Rule" witness to authorize the policy. + struct Rule has drop {} + + /// Configuration for the Rule. The `amount_bp` is the percentage + /// of the transfer amount to be paid as a royalty fee. The `min_amount` + /// is the minimum amount to be paid if the percentage based fee is + /// lower than the `min_amount` setting. + /// + /// Adding a minimum amount is useful to enforce a fixed fee even if + /// the transfer amount is very small or 0. + struct Config has store, drop { + amount_bp: u16, + min_amount: u64 + } + + /// Creator action: Add the Royalty Rule for the `T`. + /// Pass in the `TransferPolicy`, `TransferPolicyCap` and the configuration + /// for the policy: `amount_bp` and `min_amount`. + public fun add<T: key + store>( + policy: &mut TransferPolicy<T>, + cap: &TransferPolicyCap<T>, + amount_bp: u16, + min_amount: u64 + ) { + assert!(amount_bp <= MAX_BPS, EIncorrectArgument); + policy::add_rule(Rule {}, policy, cap, Config { amount_bp, min_amount }) + } + + /// Buyer action: Pay the royalty fee for the transfer. + public fun pay<T: key + store>( + policy: &mut TransferPolicy<T>, + request: &mut TransferRequest<T>, + payment: Coin<IOTA> + ) { + let paid = policy::paid(request); + let amount = fee_amount(policy, paid); + + assert!(coin::value(&payment) == amount, EInsufficientAmount); + + policy::add_to_balance(Rule {}, policy, payment); + policy::add_receipt(Rule {}, request) + } + + /// Helper function to calculate the amount to be paid for the transfer. + /// Can be dry-ran to estimate the fee amount based on the Kiosk listing price. + public fun fee_amount<T: key + store>(policy: &TransferPolicy<T>, paid: u64): u64 { + let config: &Config = policy::get_rule(Rule {}, policy); + let amount = (((paid as u128) * (config.amount_bp as u128) / 10_000) as u64); + + // If the amount is less than the minimum, use the minimum + if (amount < config.min_amount) { + amount = config.min_amount + }; + + amount + } +} diff --git a/kiosk/sources/rules/witness_rule.move b/kiosk/sources/rules/witness_rule.move new file mode 100644 index 00000000000..e1f9c58e73e --- /dev/null +++ b/kiosk/sources/rules/witness_rule.move @@ -0,0 +1,52 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +/// Description: +/// This module implements a Rule that requires a "Proof" witness to be +/// presented on every transfer. The "Proof" witness is a type chosen by +/// the owner of the policy. +/// +/// Configuration: +/// - The type to require for every transfer. +/// +/// Use Cases: +/// - Can be used to link custom logic to the TransferPolicy via the Witness. +/// - Only allow trading on a certain marketplace. +/// - Require a confirmation in a third party module +/// - Implement a custom requirement on the creator side an link the logic. +/// +module kiosk::witness_rule { + use iota::transfer_policy::{ + Self as policy, + TransferPolicy, + TransferPolicyCap, + TransferRequest + }; + + /// When a Proof does not find its Rule<Proof>. + const ERuleNotFound: u64 = 0; + + /// Custom witness-key for the "proof policy". + struct Rule<phantom Proof: drop> has drop {} + + /// Creator action: adds the Rule. + /// Requires a "Proof" witness confirmation on every transfer. + public fun add<T: key + store, Proof: drop>( + policy: &mut TransferPolicy<T>, + cap: &TransferPolicyCap<T> + ) { + policy::add_rule(Rule<Proof> {}, policy, cap, true); + } + + /// Buyer action: follow the policy. + /// Present the required "Proof" instance to get a receipt. + public fun prove<T: key + store, Proof: drop>( + _proof: Proof, + policy: &TransferPolicy<T>, + request: &mut TransferRequest<T> + ) { + assert!(policy::has_rule<T, Rule<Proof>>(policy), ERuleNotFound); + policy::add_receipt(Rule<Proof> {}, request) + } +} diff --git a/kiosk/tests/extensions/.keep b/kiosk/tests/extensions/.keep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/kiosk/tests/rules/kiosk_lock_rule_tests.move b/kiosk/tests/rules/kiosk_lock_rule_tests.move new file mode 100644 index 00000000000..c16a8499139 --- /dev/null +++ b/kiosk/tests/rules/kiosk_lock_rule_tests.move @@ -0,0 +1,52 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +#[test_only] +/// Test illustrating how an asset can be forever locked in the Kiosk. +module kiosk::kiosk_lock_rule_tests { + use iota::kiosk; + use iota::kiosk_test_utils::{Self as test, Asset}; + use iota::transfer_policy as policy; + use iota::transfer; + + use kiosk::kiosk_lock_rule as kiosk_lock; + + #[test] + fun test_item_always_locked() { + let ctx = &mut test::ctx(); + let (_, _, carl) = test::folks(); + let (policy, policy_cap) = test::get_policy(ctx); + let (kiosk, kiosk_cap) = test::get_kiosk(ctx); + let (item, item_id) = test::get_asset(ctx); + let payment = test::get_iota(1000, ctx); + + // Alice the Creator + // - disallow taking from the Kiosk + // - require "PlacedWitness" on purchase + // - place an asset into the Kiosk so it can only be sold + kiosk_lock::add(&mut policy, &policy_cap); + kiosk::lock(&mut kiosk, &kiosk_cap, &policy, item); + kiosk::list<Asset>(&mut kiosk, &kiosk_cap, item_id, 1000); + + // Bob the Buyer + // - places the item into his Kiosk and gets the proof + // - prove placing and confirm request + let (bob_kiosk, bob_kiosk_cap) = test::get_kiosk(ctx); + let (item, request) = kiosk::purchase<Asset>(&mut kiosk, item_id, payment); + kiosk::lock(&mut bob_kiosk, &bob_kiosk_cap, &policy, item); + + // The difference! + kiosk_lock::prove(&mut request, &mut bob_kiosk); + policy::confirm_request(&policy, request); + + // Carl the Cleaner; + // - cleans up and transfer Kiosk to himself + // - as we can't take an item due to the policy setting (and kiosk must be empty) + test::return_policy(policy, policy_cap, ctx); + test::return_kiosk(kiosk, kiosk_cap, ctx); + + transfer::public_transfer(bob_kiosk, carl); + transfer::public_transfer(bob_kiosk_cap, carl); + } +} diff --git a/kiosk/tests/rules/royalty_rule_tests.move b/kiosk/tests/rules/royalty_rule_tests.move new file mode 100644 index 00000000000..72b68396b39 --- /dev/null +++ b/kiosk/tests/rules/royalty_rule_tests.move @@ -0,0 +1,163 @@ +// Copyright (c) Mysten Labs, Inc. +// Modifications Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +#[test_only] +module kiosk::royalty_rule_tests { + use iota::coin; + use iota::iota::IOTA; + use iota::tx_context::dummy as ctx; + use iota::transfer_policy as policy; + use iota::transfer_policy_tests as test; + + use kiosk::royalty_rule; + + #[test] + fun test_default_flow_0() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 0% royalty; min 0 nano + royalty_rule::add(&mut policy, &cap, 0, 0); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(0, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + + let profits = test::wrapup(policy, cap, ctx); + assert!(profits == 0, 1); + } + + #[test] + #[expected_failure(abort_code = kiosk::royalty_rule::EInsufficientAmount)] + fun test_default_flow_0_invalid_amount_fail() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 0% royalty; min 0 nano + royalty_rule::add(&mut policy, &cap, 0, 0); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(10, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + + let profits = test::wrapup(policy, cap, ctx); + assert!(profits == 0, 1); + } + + #[test] + fun test_default_flow_1() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 1% royalty; min 0 nano + royalty_rule::add(&mut policy, &cap, 100, 0); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(1000, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + + let profits = test::wrapup(policy, cap, ctx); + assert!(profits == 1000, 1); + } + + #[test] + fun test_default_flow_100() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 100% royalty; min 0 nano + royalty_rule::add(&mut policy, &cap, 10_000, 0); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(100_000, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + + let profits = test::wrapup(policy, cap, ctx); + assert!(profits == 100_000, 1); + } + + #[test] + fun test_default_flow_1_min_10_000() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 1% royalty; min 10_000 nano + royalty_rule::add(&mut policy, &cap, 100, 10_000); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(10_000, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + assert!(test::wrapup(policy, cap, ctx) == 10_000, 1); + } + + #[test] + fun test_default_flow_10_min_10_000() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 10% royalty; min 10_000 nano + royalty_rule::add(&mut policy, &cap, 1000, 10_000); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(10_000, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + assert!(test::wrapup(policy, cap, ctx) == 10_000, 1); + } + + #[test] + fun test_default_flow_20_min_10_000() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 20% royalty; min 10_000 nano + royalty_rule::add(&mut policy, &cap, 20_00, 10_000); + + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(20_000, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + assert!(test::wrapup(policy, cap, ctx) == 20_000, 1); + } + + #[test] + #[expected_failure(abort_code = kiosk::royalty_rule::EIncorrectArgument)] + fun test_incorrect_config() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + royalty_rule::add(&mut policy, &cap, 11_000, 0); + test::wrapup(policy, cap, ctx); + } + + #[test] + #[expected_failure(abort_code = kiosk::royalty_rule::EInsufficientAmount)] + fun test_insufficient_amount() { + let ctx = &mut ctx(); + let (policy, cap) = test::prepare(ctx); + + // 1% royalty + royalty_rule::add(&mut policy, &cap, 100, 0); + + // Requires 1_000 nano, coin has only 999 + let request = policy::new_request(test::fresh_id(ctx), 100_000, test::fresh_id(ctx)); + let payment = coin::mint_for_testing<IOTA>(999, ctx); + + royalty_rule::pay(&mut policy, &mut request, payment); + policy::confirm_request(&mut policy, request); + test::wrapup(policy, cap, ctx); + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d987ac3fc3a..6b17bc9516e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,13 +58,13 @@ importers: version: 9.1.0(eslint@8.57.1) eslint-import-resolver-typescript: specifier: ^3.6.1 - version: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1) + version: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1) eslint-plugin-header: specifier: ^3.1.1 version: 3.1.1(eslint@8.57.1) eslint-plugin-import: specifier: ^2.29.1 - version: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + version: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-license-check: specifier: link:linting/license-check version: link:linting/license-check @@ -118,7 +118,7 @@ importers: version: link:../../sdk/typescript '@nestjs/cache-manager': specifier: ^2.2.2 - version: 2.2.2(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1))(cache-manager@5.7.6)(rxjs@7.8.1) + version: 2.2.2(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)(cache-manager@5.7.6)(rxjs@7.8.1) '@nestjs/common': specifier: ^10.0.0 version: 10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1) @@ -133,7 +133,7 @@ importers: version: 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4) '@nestjs/schedule': specifier: ^4.0.2 - version: 4.1.1(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1)) + version: 4.1.1(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4) cache-manager: specifier: ^5.6.1 version: 5.7.6 @@ -143,13 +143,13 @@ importers: devDependencies: '@nestjs/cli': specifier: ^10.0.0 - version: 10.4.5(@swc/core@1.7.28) + version: 10.4.5(@swc/core@1.7.28(@swc/helpers@0.5.5)) '@nestjs/schematics': specifier: ^10.0.0 version: 10.1.4(chokidar@3.6.0)(typescript@5.6.2) '@nestjs/testing': specifier: ^10.0.0 - version: 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)) + version: 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)(@nestjs/platform-express@10.4.4) '@types/express': specifier: ^4.17.17 version: 4.17.21 @@ -179,7 +179,7 @@ importers: version: 5.2.1(@types/eslint@8.56.12)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) prettier: specifier: ^3.3.1 version: 3.3.3 @@ -191,13 +191,13 @@ importers: version: 6.3.4 ts-jest: specifier: ^29.1.0 - version: 29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2) + version: 29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2) ts-loader: specifier: ^9.4.4 - version: 9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)) + version: 9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) ts-node: specifier: ^10.9.1 - version: 10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2) + version: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -261,13 +261,13 @@ importers: devDependencies: '@headlessui/tailwindcss': specifier: ^0.1.3 - version: 0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) '@tailwindcss/aspect-ratio': specifier: ^0.4.2 - version: 0.4.2(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 0.4.2(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) '@types/react': specifier: ^18.3.3 version: 18.3.9 @@ -279,7 +279,7 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -502,7 +502,7 @@ importers: version: 2.0.8 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -629,7 +629,7 @@ importers: version: 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@7.6.20) tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -897,7 +897,7 @@ importers: version: 0.10.7 '@types/webpack': specifier: ^5.28.1 - version: 5.28.5(@swc/core@1.7.28)(webpack-cli@5.1.4(webpack@5.95.0)) + version: 5.28.5(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) '@types/zxcvbn': specifier: ^4.4.1 version: 4.4.5 @@ -906,19 +906,19 @@ importers: version: 4.3.1(vite@5.4.8(@types/node@20.16.9)(sass@1.79.3)(terser@5.34.0)) copy-webpack-plugin: specifier: ^11.0.0 - version: 11.0.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 11.0.0(webpack@5.95.0) cross-env: specifier: ^7.0.3 version: 7.0.3 css-loader: specifier: ^6.7.3 - version: 6.11.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 6.11.0(webpack@5.95.0) dotenv: specifier: ^16.4.5 version: 16.4.5 eslint-webpack-plugin: specifier: ^4.0.1 - version: 4.2.0(eslint@8.57.1)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 4.2.0(eslint@8.57.1)(webpack@5.95.0) git-rev-sync: specifier: ^3.0.2 version: 3.0.2 @@ -927,10 +927,10 @@ importers: version: 10.11.2 html-webpack-plugin: specifier: ^5.5.3 - version: 5.6.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 5.6.0(webpack@5.95.0) mini-css-extract-plugin: specifier: ^2.7.6 - version: 2.9.1(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 2.9.1(webpack@5.95.0) onchange: specifier: ^7.1.0 version: 7.1.0 @@ -939,7 +939,7 @@ importers: version: 8.4.47 postcss-loader: specifier: ^7.3.3 - version: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0) postcss-preset-env: specifier: ^9.0.0 version: 9.6.0(postcss@8.4.47) @@ -948,19 +948,19 @@ importers: version: 1.79.3 sass-loader: specifier: ^13.3.2 - version: 13.3.3(sass@1.79.3)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 13.3.3(sass@1.79.3)(webpack@5.95.0) tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2))) + version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2))) ts-loader: specifier: ^9.4.4 - version: 9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + version: 9.5.1(typescript@5.6.2)(webpack@5.95.0) ts-node: specifier: ^10.9.1 - version: 10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2) + version: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -981,7 +981,7 @@ importers: version: 7.12.0(body-parser@1.20.3) webpack: specifier: ^5.79.0 - version: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + version: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) webpack-cli: specifier: ^5.0.1 version: 5.1.4(webpack@5.95.0) @@ -1051,16 +1051,16 @@ importers: version: 14.2.3(eslint@8.57.1)(typescript@5.6.2) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) postcss: specifier: ^8.4.31 version: 8.4.47 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) ts-jest: specifier: ^29.1.0 - version: 29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2) + version: 29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -1100,7 +1100,7 @@ importers: devDependencies: '@headlessui/tailwindcss': specifier: ^0.1.3 - version: 0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) '@types/react': specifier: ^18.3.3 version: 18.3.9 @@ -1118,7 +1118,7 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -1212,7 +1212,7 @@ importers: devDependencies: '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) '@tsconfig/docusaurus': specifier: ^2.0.3 version: 2.0.3 @@ -1233,10 +1233,10 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))) + version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -1282,7 +1282,7 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) typescript: specifier: ^5.5.3 version: 5.6.2 @@ -1300,25 +1300,25 @@ importers: version: 3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@docusaurus/core': specifier: 3.5.2 - version: 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/preset-classic': specifier: 3.5.2 - version: 3.5.2(@algolia/client-search@4.24.0)(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 3.5.2(@algolia/client-search@4.24.0)(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/remark-plugin-npm2yarn': specifier: ^3.5.2 version: 3.5.2 '@docusaurus/theme-common': specifier: ^3.5.2 - version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) '@docusaurus/theme-live-codeblock': specifier: ^3.5.2 - version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/theme-mermaid': specifier: ^3.5.2 - version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/theme-search-algolia': specifier: ^3.5.2 - version: 3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@emotion/react': specifier: ^11.11.4 version: 11.13.3(@types/react@18.3.9)(react@18.3.1) @@ -1327,7 +1327,7 @@ importers: version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(react@18.3.1) '@graphql-markdown/docusaurus': specifier: ^1.24.1 - version: 1.26.2(@docusaurus/logger@3.5.2)(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) + version: 1.26.2(@docusaurus/logger@3.5.2)(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) '@graphql-tools/graphql-file-loader': specifier: ^8.0.1 version: 8.0.1(graphql@16.9.0) @@ -1360,7 +1360,7 @@ importers: version: 3.2.0 docusaurus-theme-search-typesense: specifier: 0.20.0-0 - version: 0.20.0-0(@algolia/client-search@4.24.0)(@babel/runtime@7.25.6)(@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.9)(algoliasearch@4.24.0)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + version: 0.20.0-0(iea5eyhbiud2dlcqtud2g4pxzm) dotenv: specifier: ^16.4.5 version: 16.4.5 @@ -1414,7 +1414,7 @@ importers: version: 6.0.0 tailwindcss: specifier: ^3.3.3 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + version: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) web3: specifier: ^4.2.2 version: 4.13.0(typescript@5.6.2)(zod@3.23.8) @@ -1424,13 +1424,13 @@ importers: version: 7.25.2(@babel/core@7.25.2) '@docusaurus/module-type-aliases': specifier: 3.5.2 - version: 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@docusaurus/tsconfig': specifier: 3.5.2 version: 3.5.2 '@docusaurus/types': specifier: 3.5.2 - version: 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@metamask/providers': specifier: ^10.2.1 version: 10.2.1 @@ -1792,6 +1792,9 @@ importers: '@iota/iota-sdk': specifier: workspace:* version: link:../typescript + dotenv: + specifier: ^16.4.5 + version: 16.4.5 devDependencies: '@iota/build-scripts': specifier: workspace:* @@ -1996,7 +1999,7 @@ importers: version: 5.6.2 typescript-json-schema: specifier: ^0.64.0 - version: 0.64.0(@swc/core@1.7.28) + version: 0.64.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) packages: @@ -18440,7 +18443,7 @@ snapshots: transitivePeerDependencies: - '@algolia/client-search' - '@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 @@ -18454,12 +18457,12 @@ snapshots: '@babel/traverse': 7.25.6 '@docusaurus/cssnano-preset': 3.4.0 '@docusaurus/logger': 3.4.0 - '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) autoprefixer: 10.4.20(postcss@8.4.47) - babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0) + babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) babel-plugin-dynamic-import-node: 2.3.3 boxen: 6.2.1 chalk: 4.1.2 @@ -18468,34 +18471,34 @@ snapshots: cli-table3: 0.6.5 combine-promises: 1.2.0 commander: 5.1.0 - copy-webpack-plugin: 11.0.0(webpack@5.95.0) + copy-webpack-plugin: 11.0.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) core-js: 3.38.1 - css-loader: 6.11.0(webpack@5.95.0) - css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.95.0) + css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) + css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) cssnano: 6.1.2(postcss@8.4.47) del: 6.1.1 detect-port: 1.6.1 escape-html: 1.0.3 eta: 2.2.0 eval: 0.1.8 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 html-minifier-terser: 7.2.0 html-tags: 3.3.1 - html-webpack-plugin: 5.6.0(webpack@5.95.0) + html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) leven: 3.1.0 lodash: 4.17.21 - mini-css-extract-plugin: 2.9.1(webpack@5.95.0) + mini-css-extract-plugin: 2.9.1(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) p-map: 4.0.0 postcss: 8.4.47 - postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0) + postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) prompts: 2.4.2 react: 18.3.1 - react-dev-utils: 12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0) + react-dev-utils: 12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0) + react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) react-router: 5.3.4(react@18.3.1) react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1) react-router-dom: 5.3.4(react@18.3.1) @@ -18503,15 +18506,15 @@ snapshots: semver: 7.6.3 serve-handler: 6.1.5 shelljs: 0.8.5 - terser-webpack-plugin: 5.3.10(webpack@5.95.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) tslib: 2.7.0 update-notifier: 6.0.2 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) - webpack: 5.95.0 + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 4.15.2(webpack@5.95.0) + webpack-dev-server: 4.15.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) webpack-merge: 5.10.0 - webpackbar: 5.0.2(webpack@5.95.0) + webpackbar: 5.0.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) transitivePeerDependencies: - '@docusaurus/types' - '@parcel/css' @@ -18531,7 +18534,7 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 @@ -18545,13 +18548,13 @@ snapshots: '@babel/traverse': 7.25.6 '@docusaurus/cssnano-preset': 3.5.2 '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@mdx-js/react': 3.0.1(@types/react@18.3.9)(react@18.3.1) autoprefixer: 10.4.20(postcss@8.4.47) - babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0) + babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) babel-plugin-dynamic-import-node: 2.3.3 boxen: 6.2.1 chalk: 4.1.2 @@ -18560,34 +18563,34 @@ snapshots: cli-table3: 0.6.5 combine-promises: 1.2.0 commander: 5.1.0 - copy-webpack-plugin: 11.0.0(webpack@5.95.0) + copy-webpack-plugin: 11.0.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) core-js: 3.38.1 - css-loader: 6.11.0(webpack@5.95.0) - css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.95.0) + css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) + css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) cssnano: 6.1.2(postcss@8.4.47) del: 6.1.1 detect-port: 1.6.1 escape-html: 1.0.3 eta: 2.2.0 eval: 0.1.8 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 html-minifier-terser: 7.2.0 html-tags: 3.3.1 - html-webpack-plugin: 5.6.0(webpack@5.95.0) + html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) leven: 3.1.0 lodash: 4.17.21 - mini-css-extract-plugin: 2.9.1(webpack@5.95.0) + mini-css-extract-plugin: 2.9.1(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) p-map: 4.0.0 postcss: 8.4.47 - postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0) + postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) prompts: 2.4.2 react: 18.3.1 - react-dev-utils: 12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0) + react-dev-utils: 12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0) + react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) react-router: 5.3.4(react@18.3.1) react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1) react-router-dom: 5.3.4(react@18.3.1) @@ -18595,15 +18598,15 @@ snapshots: semver: 7.6.3 serve-handler: 6.1.5 shelljs: 0.8.5 - terser-webpack-plugin: 5.3.10(webpack@5.95.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) tslib: 2.7.0 update-notifier: 6.0.2 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) - webpack: 5.95.0 + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 4.15.2(webpack@5.95.0) + webpack-dev-server: 4.15.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) webpack-merge: 5.10.0 - webpackbar: 5.0.2(webpack@5.95.0) + webpackbar: 5.0.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) transitivePeerDependencies: - '@docusaurus/types' - '@parcel/css' @@ -18647,16 +18650,16 @@ snapshots: chalk: 4.1.2 tslib: 2.7.0 - '@docusaurus/mdx-loader@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/mdx-loader@3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.4.0 - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@mdx-js/mdx': 3.0.1 '@slorber/remark-comment': 1.0.0 escape-html: 1.0.3 estree-util-value-to-estree: 3.1.2 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 image-size: 1.1.1 mdast-util-mdx: 3.0.0 @@ -18672,9 +18675,9 @@ snapshots: tslib: 2.7.0 unified: 11.0.5 unist-util-visit: 5.0.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) vfile: 6.0.3 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@docusaurus/types' - '@swc/core' @@ -18684,16 +18687,16 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/mdx-loader@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/mdx-loader@3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@mdx-js/mdx': 3.0.1 '@slorber/remark-comment': 1.0.0 escape-html: 1.0.3 estree-util-value-to-estree: 3.1.2 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 image-size: 1.1.1 mdast-util-mdx: 3.0.0 @@ -18709,9 +18712,9 @@ snapshots: tslib: 2.7.0 unified: 11.0.5 unist-util-visit: 5.0.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) vfile: 6.0.3 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@docusaurus/types' - '@swc/core' @@ -18721,9 +18724,9 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/module-type-aliases@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@docusaurus/module-type-aliases@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/history': 4.7.11 '@types/react': 18.3.9 '@types/react-router-config': 5.0.11 @@ -18739,9 +18742,9 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/module-type-aliases@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@docusaurus/module-type-aliases@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/history': 4.7.11 '@types/react': 18.3.9 '@types/react-router-config': 5.0.11 @@ -18757,17 +18760,17 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/plugin-content-blog@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-content-blog@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) cheerio: 1.0.0-rc.12 feed: 4.2.2 fs-extra: 11.2.0 @@ -18779,7 +18782,7 @@ snapshots: tslib: 2.7.0 unist-util-visit: 5.0.0 utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@mdx-js/react' - '@parcel/css' @@ -18799,16 +18802,16 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-docs@3.4.0(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-content-docs@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.4.0 - '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/module-type-aliases': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/module-type-aliases': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@types/react-router-config': 5.0.11 combine-promises: 1.2.0 fs-extra: 11.2.0 @@ -18818,7 +18821,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) tslib: 2.7.0 utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@parcel/css' - '@rspack/core' @@ -18837,17 +18840,17 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/module-type-aliases': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/module-type-aliases': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@types/react-router-config': 5.0.11 combine-promises: 1.2.0 fs-extra: 11.2.0 @@ -18857,7 +18860,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) tslib: 2.7.0 utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@mdx-js/react' - '@parcel/css' @@ -18877,18 +18880,18 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-pages@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-content-pages@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.7.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - '@mdx-js/react' - '@parcel/css' @@ -18908,11 +18911,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-debug@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-debug@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18937,11 +18940,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-analytics@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-google-analytics@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.7.0 @@ -18964,11 +18967,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-gtag@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-google-gtag@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@types/gtag.js': 0.0.12 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18992,11 +18995,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-tag-manager@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-google-tag-manager@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.7.0 @@ -19019,14 +19022,14 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-sitemap@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/plugin-sitemap@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.5.2 - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -19051,21 +19054,21 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/preset-classic@3.5.2(@algolia/client-search@4.24.0)(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': - dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-debug': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-google-analytics': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-google-gtag': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-google-tag-manager': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-sitemap': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-classic': 3.5.2(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-search-algolia': 3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/preset-classic@3.5.2(@algolia/client-search@4.24.0)(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + dependencies: + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-debug': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-google-analytics': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-google-gtag': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-google-tag-manager': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-sitemap': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-classic': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/theme-search-algolia': 3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: @@ -19105,20 +19108,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@docusaurus/theme-classic@3.5.2(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/theme-classic@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/module-type-aliases': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/module-type-aliases': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) '@docusaurus/theme-translations': 3.5.2 - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@mdx-js/react': 3.0.1(@types/react@18.3.9)(react@18.3.1) clsx: 2.1.1 copy-text-to-clipboard: 3.2.0 @@ -19153,13 +19156,13 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': dependencies: - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/module-type-aliases': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/module-type-aliases': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@types/history': 4.7.11 '@types/react': 18.3.9 '@types/react-router-config': 5.0.11 @@ -19179,12 +19182,12 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/theme-live-codeblock@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/theme-live-codeblock@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) '@docusaurus/theme-translations': 3.5.2 - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@philpl/buble': 0.19.7 clsx: 2.1.1 fs-extra: 11.2.0 @@ -19213,13 +19216,13 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-mermaid@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/theme-mermaid@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/module-type-aliases': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/module-type-aliases': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) mermaid: 10.9.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -19244,16 +19247,16 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-search-algolia@3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': + '@docusaurus/theme-search-algolia@3.5.2(@algolia/client-search@4.24.0)(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/react@18.3.9)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)': dependencies: '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.5.2 - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) '@docusaurus/theme-translations': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) algoliasearch: 4.24.0 algoliasearch-helper: 3.22.5(algoliasearch@4.24.0) clsx: 2.1.1 @@ -19299,7 +19302,7 @@ snapshots: '@docusaurus/tsconfig@3.5.2': {} - '@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@mdx-js/mdx': 3.0.1 '@types/history': 4.7.11 @@ -19310,7 +19313,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) webpack-merge: 5.10.0 transitivePeerDependencies: - '@swc/core' @@ -19319,7 +19322,7 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@mdx-js/mdx': 3.0.1 '@types/history': 4.7.11 @@ -19330,7 +19333,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) webpack-merge: 5.10.0 transitivePeerDependencies: - '@swc/core' @@ -19339,29 +19342,29 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + '@docusaurus/utils-common@3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: tslib: 2.7.0 optionalDependencies: - '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-common@3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + '@docusaurus/utils-common@3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: tslib: 2.7.0 optionalDependencies: - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-common@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + '@docusaurus/utils-common@3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: tslib: 2.7.0 optionalDependencies: - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.4.0 - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) fs-extra: 11.2.0 joi: 17.13.3 js-yaml: 4.1.0 @@ -19376,11 +19379,11 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.4.0 - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) fs-extra: 11.2.0 joi: 17.13.3 js-yaml: 4.1.0 @@ -19395,11 +19398,11 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils-validation@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils-validation@3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) fs-extra: 11.2.0 joi: 17.13.3 js-yaml: 4.1.0 @@ -19414,13 +19417,13 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils@3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.4.0 - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@svgr/webpack': 8.1.0(typescript@5.6.2) escape-string-regexp: 4.0.0 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 github-slugger: 1.5.0 globby: 11.1.0 @@ -19433,11 +19436,11 @@ snapshots: resolve-pathname: 3.0.0 shelljs: 0.8.5 tslib: 2.7.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: - '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@swc/core' - esbuild @@ -19446,13 +19449,13 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils@3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils@3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.4.0 - '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@svgr/webpack': 8.1.0(typescript@5.6.2) escape-string-regexp: 4.0.0 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 github-slugger: 1.5.0 globby: 11.1.0 @@ -19465,11 +19468,11 @@ snapshots: resolve-pathname: 3.0.0 shelljs: 0.8.5 tslib: 2.7.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@swc/core' - esbuild @@ -19478,13 +19481,13 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils@3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.5.2 - '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@svgr/webpack': 8.1.0(typescript@5.6.2) escape-string-regexp: 4.0.0 - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) fs-extra: 11.2.0 github-slugger: 1.5.0 globby: 11.1.0 @@ -19497,11 +19500,11 @@ snapshots: resolve-pathname: 3.0.0 shelljs: 0.8.5 tslib: 2.7.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) utility-types: 3.11.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: - '@docusaurus/types': 3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@swc/core' - esbuild @@ -20084,24 +20087,24 @@ snapshots: - encoding - supports-color - '@graphql-markdown/core@1.12.0(@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)': + '@graphql-markdown/core@1.12.0(@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)': dependencies: '@graphql-markdown/graphql': 1.1.4(graphql@16.9.0)(prettier@3.3.3) '@graphql-markdown/logger': 1.0.4 '@graphql-markdown/utils': 1.7.0(prettier@3.3.3) optionalDependencies: - '@graphql-markdown/printer-legacy': 1.9.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) + '@graphql-markdown/printer-legacy': 1.9.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) graphql-config: 5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2) transitivePeerDependencies: - graphql - prettier - '@graphql-markdown/docusaurus@1.26.2(@docusaurus/logger@3.5.2)(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2)': + '@graphql-markdown/docusaurus@1.26.2(@docusaurus/logger@3.5.2)(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2)': dependencies: '@docusaurus/logger': 3.5.2 - '@graphql-markdown/core': 1.12.0(@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3) + '@graphql-markdown/core': 1.12.0(@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2))(graphql-config@5.1.2(@types/node@22.7.3)(graphql@16.9.0)(typescript@5.6.2))(graphql@16.9.0)(prettier@3.3.3) '@graphql-markdown/logger': 1.0.4 - '@graphql-markdown/printer-legacy': 1.9.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) + '@graphql-markdown/printer-legacy': 1.9.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2) transitivePeerDependencies: - '@docusaurus/types' - '@graphql-markdown/diff' @@ -20126,9 +20129,9 @@ snapshots: '@graphql-markdown/logger@1.0.4': {} - '@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2)': + '@graphql-markdown/printer-legacy@1.9.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(graphql@16.9.0)(prettier@3.3.3)(typescript@5.6.2)': dependencies: - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) '@graphql-markdown/graphql': 1.1.4(graphql@16.9.0)(prettier@3.3.3) '@graphql-markdown/utils': 1.7.0(prettier@3.3.3) transitivePeerDependencies: @@ -20466,9 +20469,9 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@headlessui/tailwindcss@0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)))': + '@headlessui/tailwindcss@0.1.3(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)))': dependencies: - tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) '@hookform/resolvers@3.9.0(react-hook-form@7.53.0(react@18.3.1))': dependencies: @@ -20546,7 +20549,7 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0(node-notifier@10.0.0) @@ -20560,7 +20563,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -21085,14 +21088,14 @@ snapshots: pump: 3.0.2 tar-fs: 2.1.1 - '@nestjs/cache-manager@2.2.2(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1))(cache-manager@5.7.6)(rxjs@7.8.1)': + '@nestjs/cache-manager@2.2.2(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)(cache-manager@5.7.6)(rxjs@7.8.1)': dependencies: '@nestjs/common': 10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1) '@nestjs/core': 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1) cache-manager: 5.7.6 rxjs: 7.8.1 - '@nestjs/cli@10.4.5(@swc/core@1.7.28)': + '@nestjs/cli@10.4.5(@swc/core@1.7.28(@swc/helpers@0.5.5))': dependencies: '@angular-devkit/core': 17.3.8(chokidar@3.6.0) '@angular-devkit/schematics': 17.3.8(chokidar@3.6.0) @@ -21102,7 +21105,7 @@ snapshots: chokidar: 3.6.0 cli-table3: 0.6.5 commander: 4.1.1 - fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.3.3)(webpack@5.94.0(@swc/core@1.7.28)) + fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.3.3)(webpack@5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) glob: 10.4.2 inquirer: 8.2.6 node-emoji: 1.11.0 @@ -21111,7 +21114,7 @@ snapshots: tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 typescript: 5.3.3 - webpack: 5.94.0(@swc/core@1.7.28) + webpack: 5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) webpack-node-externals: 3.0.0 optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) @@ -21164,7 +21167,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@nestjs/schedule@4.1.1(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1))': + '@nestjs/schedule@4.1.1(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)': dependencies: '@nestjs/common': 10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1) '@nestjs/core': 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1) @@ -21193,7 +21196,7 @@ snapshots: transitivePeerDependencies: - chokidar - '@nestjs/testing@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4))': + '@nestjs/testing@10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.4)(@nestjs/platform-express@10.4.4)': dependencies: '@nestjs/common': 10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1) '@nestjs/core': 10.4.4(@nestjs/common@10.4.4(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.2.2)(rxjs@7.8.1) @@ -23791,14 +23794,14 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)))': + '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)))': dependencies: - tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) - '@tailwindcss/forms@0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)))': + '@tailwindcss/forms@0.5.9(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) '@tanstack/eslint-plugin-query@5.58.1(eslint@8.57.1)(typescript@5.6.2)': dependencies: @@ -24302,11 +24305,11 @@ snapshots: '@types/webextension-polyfill@0.10.7': {} - '@types/webpack@5.28.5(@swc/core@1.7.28)(webpack-cli@5.1.4(webpack@5.95.0))': + '@types/webpack@5.28.5(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4)': dependencies: '@types/node': 20.16.9 tapable: 2.2.1 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) transitivePeerDependencies: - '@swc/core' - esbuild @@ -25081,19 +25084,19 @@ snapshots: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4))': + '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.95.0)': dependencies: - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack@5.95.0) - '@webpack-cli/info@2.0.2(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4))': + '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.95.0)': dependencies: - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack@5.95.0) - '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4))': + '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.95.0)': dependencies: - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack@5.95.0) '@whatwg-node/events@0.0.3': {} @@ -25584,12 +25587,12 @@ snapshots: transitivePeerDependencies: - supports-color - babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.95.0): + babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@babel/core': 7.25.2 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) babel-plugin-dynamic-import-node@2.3.3: dependencies: @@ -26389,7 +26392,7 @@ snapshots: copy-text-to-clipboard@3.2.0: {} - copy-webpack-plugin@11.0.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + copy-webpack-plugin@11.0.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -26397,7 +26400,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) copy-webpack-plugin@11.0.0(webpack@5.95.0): dependencies: @@ -26407,7 +26410,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) core-js-compat@3.38.1: dependencies: @@ -26477,13 +26480,13 @@ snapshots: crc-32@1.2.2: {} - create-jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + create-jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26553,7 +26556,7 @@ snapshots: postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - css-loader@6.11.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + css-loader@6.11.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: icss-utils: 5.1.0(postcss@8.4.47) postcss: 8.4.47 @@ -26564,7 +26567,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) css-loader@6.11.0(webpack@5.95.0): dependencies: @@ -26577,9 +26580,9 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) - css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.95.0): + css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@jridgewell/trace-mapping': 0.3.25 cssnano: 6.1.2(postcss@8.4.47) @@ -26587,7 +26590,7 @@ snapshots: postcss: 8.4.47 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: clean-css: 5.3.3 @@ -27132,15 +27135,15 @@ snapshots: dependencies: esutils: 2.0.3 - docusaurus-theme-search-typesense@0.20.0-0(@algolia/client-search@4.24.0)(@babel/runtime@7.25.6)(@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.9)(algoliasearch@4.24.0)(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16): + docusaurus-theme-search-typesense@0.20.0-0(iea5eyhbiud2dlcqtud2g4pxzm): dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) '@docusaurus/logger': 3.4.0 - '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/plugin-content-docs': 3.4.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.9)(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(eslint@8.57.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)(vue-template-compiler@2.7.16))(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) '@docusaurus/theme-translations': 3.4.0 - '@docusaurus/utils': 3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.5.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.7.28(@swc/helpers@0.5.5))(typescript@5.6.2) algoliasearch-helper: 3.22.5(algoliasearch@4.24.0) clsx: 1.2.1 eta: 2.2.0 @@ -27557,7 +27560,7 @@ snapshots: eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1) - eslint-plugin-import: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1) eslint-plugin-react: 7.37.0(eslint@8.57.1) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1) @@ -27581,25 +27584,6 @@ snapshots: - supports-color eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.7(supports-color@8.1.1) - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) - fast-glob: 3.3.2 - get-tsconfig: 4.8.1 - is-bun-module: 1.2.1 - is-glob: 4.0.3 - optionalDependencies: - eslint-plugin-import: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7(supports-color@8.1.1) @@ -27611,24 +27595,13 @@ snapshots: is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.2) - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1) - transitivePeerDependencies: - - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1): dependencies: debug: 3.2.7 @@ -27636,7 +27609,7 @@ snapshots: '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.2) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1) transitivePeerDependencies: - supports-color @@ -27644,7 +27617,7 @@ snapshots: dependencies: eslint: 8.57.1 - eslint-plugin-import@2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-import@2.30.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -27770,7 +27743,7 @@ snapshots: eslint-visitor-keys@4.1.0: {} - eslint-webpack-plugin@4.2.0(eslint@8.57.1)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + eslint-webpack-plugin@4.2.0(eslint@8.57.1)(webpack@5.95.0): dependencies: '@types/eslint': 8.56.12 eslint: 8.57.1 @@ -27778,7 +27751,7 @@ snapshots: micromatch: 4.0.8 normalize-path: 3.0.0 schema-utils: 4.2.0 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) eslint@8.57.1: dependencies: @@ -28143,11 +28116,11 @@ snapshots: dependencies: flat-cache: 3.2.0 - file-loader@6.2.0(webpack@5.95.0): + file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) file-system-cache@2.3.0: dependencies: @@ -28255,7 +28228,7 @@ snapshots: forever-agent@0.6.1: {} - fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0): + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -28271,12 +28244,12 @@ snapshots: semver: 7.6.3 tapable: 1.1.3 typescript: 5.6.2 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: eslint: 8.57.1 vue-template-compiler: 2.7.16 - fork-ts-checker-webpack-plugin@9.0.2(typescript@5.3.3)(webpack@5.94.0(@swc/core@1.7.28)): + fork-ts-checker-webpack-plugin@9.0.2(typescript@5.3.3)(webpack@5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -28291,7 +28264,7 @@ snapshots: semver: 7.6.3 tapable: 2.2.1 typescript: 5.3.3 - webpack: 5.94.0(@swc/core@1.7.28) + webpack: 5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) form-data-encoder@2.1.4: {} @@ -29039,7 +29012,7 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -29047,7 +29020,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) html-webpack-plugin@5.6.0(webpack@5.95.0): dependencies: @@ -29057,7 +29030,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) htmlparser2@6.1.0: dependencies: @@ -29692,16 +29665,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + jest-cli@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + create-jest: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + jest-config: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -29713,7 +29686,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + jest-config@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: '@babel/core': 7.25.2 '@jest/test-sequencer': 29.7.0 @@ -29739,7 +29712,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.16.9 - ts-node: 10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2) + ts-node: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -29970,12 +29943,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + jest-cli: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) optionalDependencies: node-notifier: 10.0.0 transitivePeerDependencies: @@ -31241,17 +31214,17 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.9.1(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + mini-css-extract-plugin@2.9.1(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: schema-utils: 4.2.0 tapable: 2.2.1 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) mini-css-extract-plugin@2.9.1(webpack@5.95.0): dependencies: schema-utils: 4.2.0 tapable: 2.2.1 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) mini-svg-data-uri@1.4.4: {} @@ -32182,29 +32155,29 @@ snapshots: '@csstools/utilities': 1.0.0(postcss@8.4.47) postcss: 8.4.47 - postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: lilconfig: 3.1.2 yaml: 2.5.1 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2) + ts-node: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2) - postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)): dependencies: lilconfig: 3.1.2 yaml: 2.5.1 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@types/node@22.7.3)(typescript@5.6.2) + ts-node: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2) - postcss-loader@7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + postcss-loader@7.3.4(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: cosmiconfig: 8.3.6(typescript@5.6.2) jiti: 1.21.6 postcss: 8.4.47 semver: 7.6.3 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - typescript @@ -32214,7 +32187,7 @@ snapshots: jiti: 1.21.6 postcss: 8.4.47 semver: 7.6.3 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) transitivePeerDependencies: - typescript @@ -32719,7 +32692,7 @@ snapshots: react: 18.3.1 tween-functions: 1.2.0 - react-dev-utils@12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0): + react-dev-utils@12.0.1(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@babel/code-frame': 7.24.7 address: 1.2.2 @@ -32730,7 +32703,7 @@ snapshots: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.1)(typescript@5.6.2)(vue-template-compiler@2.7.16)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -32745,7 +32718,7 @@ snapshots: shell-quote: 1.8.1 strip-ansi: 6.0.1 text-table: 0.2.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -32846,11 +32819,11 @@ snapshots: sucrase: 3.35.0 use-editable: 2.3.3(react@18.3.1) - react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0): + react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@babel/runtime': 7.25.6 react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) react-number-format@5.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: @@ -33540,10 +33513,10 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@13.3.3(sass@1.79.3)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + sass-loader@13.3.3(sass@1.79.3)(webpack@5.95.0): dependencies: neo-async: 2.6.2 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) optionalDependencies: sass: 1.79.3 @@ -34266,15 +34239,15 @@ snapshots: tailwind-merge@2.5.2: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2))): dependencies: - tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) - tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2))): dependencies: - tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + tailwindcss: 3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) - tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)): + tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -34293,7 +34266,7 @@ snapshots: postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) postcss-nested: 6.2.0(postcss@8.4.47) postcss-selector-parser: 6.1.2 resolve: 1.22.8 @@ -34301,7 +34274,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)): + tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -34320,7 +34293,7 @@ snapshots: postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2)) + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2)) postcss-nested: 6.2.0(postcss@8.4.47) postcss-selector-parser: 6.1.2 resolve: 1.22.8 @@ -34376,48 +34349,39 @@ snapshots: term-size@2.2.1: {} - terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(webpack@5.94.0(@swc/core@1.7.28)): + terser-webpack-plugin@5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.34.0 - webpack: 5.94.0(@swc/core@1.7.28) + webpack: 5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) - terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + terser-webpack-plugin@5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.34.0 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) - terser-webpack-plugin@5.3.10(@swc/core@1.7.28)(webpack@5.95.0(@swc/core@1.7.28)): + terser-webpack-plugin@5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.34.0 - webpack: 5.95.0(@swc/core@1.7.28) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) - terser-webpack-plugin@5.3.10(webpack@5.95.0): - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.2 - terser: 5.34.0 - webpack: 5.95.0 - terser@5.34.0: dependencies: '@jridgewell/source-map': 0.3.6 @@ -34562,12 +34526,12 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2): + ts-jest@29.2.5(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)))(typescript@5.6.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2)) + jest: 29.7.0(@types/node@20.16.9)(babel-plugin-macros@3.1.0)(node-notifier@10.0.0)(ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -34581,7 +34545,7 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.25.2) - ts-loader@9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)): + ts-loader@9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.1 @@ -34589,9 +34553,9 @@ snapshots: semver: 7.6.3 source-map: 0.7.4 typescript: 5.6.2 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) - ts-loader@9.5.1(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.28)): + ts-loader@9.5.1(typescript@5.6.2)(webpack@5.95.0): dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.1 @@ -34599,11 +34563,11 @@ snapshots: semver: 7.6.3 source-map: 0.7.4 typescript: 5.6.2 - webpack: 5.95.0(@swc/core@1.7.28) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) ts-log@2.2.5: {} - ts-node@10.9.2(@swc/core@1.7.28)(@types/node@16.18.111)(typescript@5.1.6): + ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@16.18.111)(typescript@5.1.6): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -34623,7 +34587,7 @@ snapshots: optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) - ts-node@10.9.2(@swc/core@1.7.28)(@types/node@20.16.9)(typescript@5.6.2): + ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@20.16.9)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -34643,7 +34607,7 @@ snapshots: optionalDependencies: '@swc/core': 1.7.28(@swc/helpers@0.5.5) - ts-node@10.9.2(@types/node@22.7.3)(typescript@5.6.2): + ts-node@10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@22.7.3)(typescript@5.6.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -34660,6 +34624,8 @@ snapshots: typescript: 5.6.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.7.28(@swc/helpers@0.5.5) optional: true ts-retry-promise@0.8.1: {} @@ -34816,14 +34782,14 @@ snapshots: transitivePeerDependencies: - supports-color - typescript-json-schema@0.64.0(@swc/core@1.7.28): + typescript-json-schema@0.64.0(@swc/core@1.7.28(@swc/helpers@0.5.5)): dependencies: '@types/json-schema': 7.0.15 '@types/node': 16.18.111 glob: 7.2.3 path-equal: 1.2.5 safe-stable-stringify: 2.5.0 - ts-node: 10.9.2(@swc/core@1.7.28)(@types/node@16.18.111)(typescript@5.1.6) + ts-node: 10.9.2(@swc/core@1.7.28(@swc/helpers@0.5.5))(@types/node@16.18.111)(typescript@5.1.6) typescript: 5.1.6 yargs: 17.7.2 transitivePeerDependencies: @@ -35062,14 +35028,14 @@ snapshots: dependencies: punycode: 2.3.1 - url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0): + url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) optionalDependencies: - file-loader: 6.2.0(webpack@5.95.0) + file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) url-parse@1.5.10: dependencies: @@ -35816,9 +35782,9 @@ snapshots: webpack-cli@5.1.4(webpack@5.95.0): dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) - '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) - '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.95.0) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.95.0) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.95.0) colorette: 2.0.20 commander: 10.0.1 cross-spawn: 7.0.3 @@ -35827,19 +35793,19 @@ snapshots: import-local: 3.2.0 interpret: 3.1.1 rechoir: 0.8.0 - webpack: 5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4) + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4) webpack-merge: 5.10.0 - webpack-dev-middleware@5.3.4(webpack@5.95.0): + webpack-dev-middleware@5.3.4(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) - webpack-dev-server@4.15.2(webpack@5.95.0): + webpack-dev-server@4.15.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -35869,10 +35835,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 5.3.4(webpack@5.95.0) + webpack-dev-middleware: 5.3.4(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) ws: 8.18.0 optionalDependencies: - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) transitivePeerDependencies: - bufferutil - debug @@ -35891,37 +35857,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.94.0(@swc/core@1.7.28): - dependencies: - '@types/estree': 1.0.6 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) - browserslist: 4.24.0 - chrome-trace-event: 1.0.4 - enhanced-resolve: 5.17.1 - es-module-lexer: 1.5.4 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(webpack@5.94.0(@swc/core@1.7.28)) - watchpack: 2.4.2 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - - webpack@5.95.0: + webpack@5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5)): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 @@ -35943,7 +35879,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(webpack@5.95.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -35951,7 +35887,7 @@ snapshots: - esbuild - uglify-js - webpack@5.95.0(@swc/core@1.7.28): + webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 @@ -35973,7 +35909,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(webpack@5.95.0(@swc/core@1.7.28)) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -35981,7 +35917,7 @@ snapshots: - esbuild - uglify-js - webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4): + webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack-cli@5.1.4): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 @@ -36003,7 +35939,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.7.28)(webpack@5.95.0(@swc/core@1.7.28)(webpack-cli@5.1.4)) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.28(@swc/helpers@0.5.5))(webpack@5.95.0) watchpack: 2.4.2 webpack-sources: 3.2.3 optionalDependencies: @@ -36013,13 +35949,13 @@ snapshots: - esbuild - uglify-js - webpackbar@5.0.2(webpack@5.95.0): + webpackbar@5.0.2(webpack@5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5))): dependencies: chalk: 4.1.2 consola: 2.15.3 pretty-time: 1.1.0 std-env: 3.7.0 - webpack: 5.95.0 + webpack: 5.95.0(@swc/core@1.7.28(@swc/helpers@0.5.5)) websocket-driver@0.7.4: dependencies: diff --git a/sdk/create-dapp/package.json b/sdk/create-dapp/package.json index 43e058c3b9f..47fd160a3b3 100644 --- a/sdk/create-dapp/package.json +++ b/sdk/create-dapp/package.json @@ -30,9 +30,6 @@ "bugs": { "url": "https://github.com/iotaledger/iota/issues/new" }, - "publishConfig": { - "access": "public" - }, "devDependencies": { "@iota/build-scripts": "workspace:*", "typescript": "^5.5.3" diff --git a/sdk/kiosk/package.json b/sdk/kiosk/package.json index b5b4e1bc43d..d1c39f30b59 100644 --- a/sdk/kiosk/package.json +++ b/sdk/kiosk/package.json @@ -38,7 +38,8 @@ "prepare:e2e": "cargo build --bin iota --profile dev && cross-env RUST_LOG=warn,iota=error,anemo_tower=warn,consensus=off cargo run --bin iota start --with-faucet --force-regenesis" }, "dependencies": { - "@iota/iota-sdk": "workspace:*" + "@iota/iota-sdk": "workspace:*", + "dotenv": "^16.4.5" }, "devDependencies": { "@iota/build-scripts": "workspace:*", diff --git a/sdk/kiosk/src/bcs.ts b/sdk/kiosk/src/bcs.ts index a7133601ddc..8f3af53a276 100644 --- a/sdk/kiosk/src/bcs.ts +++ b/sdk/kiosk/src/bcs.ts @@ -17,7 +17,6 @@ export const KioskType = bcs.struct(KIOSK_TYPE, { profits: bcs.u64(), owner: bcs.Address, itemCount: bcs.u32(), - allowExtensions: bcs.bool(), }); // Register the `PurchaseCap` for faster queries. diff --git a/sdk/kiosk/src/client/kiosk-client.ts b/sdk/kiosk/src/client/kiosk-client.ts index f01db6ef159..82f079b2c25 100644 --- a/sdk/kiosk/src/client/kiosk-client.ts +++ b/sdk/kiosk/src/client/kiosk-client.ts @@ -157,11 +157,13 @@ export class KioskClient { const networkKiosk = getNetwork(network).kiosk; - /// Check existence of rule based on network and throw an error if it's not found. - if (!rules[rule] || !networkKiosk) { + const rulePackageId = rules[rule] || networkKiosk?.[rule]; + + /// Check existence of rule throw an error if it's not found. + if (!rulePackageId) { throw new Error(`Missing packageId for rule ${rule}`); } - return rules[rule] || networkKiosk[rule]; + return rulePackageId; } } diff --git a/sdk/kiosk/src/types/kiosk.ts b/sdk/kiosk/src/types/kiosk.ts index 8b2d5c2972c..699d343dbf9 100644 --- a/sdk/kiosk/src/types/kiosk.ts +++ b/sdk/kiosk/src/types/kiosk.ts @@ -40,7 +40,6 @@ export type Kiosk = { profits: string; owner: string; itemCount: number; - allowExtensions: boolean; }; /** diff --git a/sdk/kiosk/test/e2e/e2e.test.ts b/sdk/kiosk/test/e2e/e2e.test.ts index 3195b806b20..80bb966263e 100644 --- a/sdk/kiosk/test/e2e/e2e.test.ts +++ b/sdk/kiosk/test/e2e/e2e.test.ts @@ -9,7 +9,6 @@ import { beforeAll, describe, expect, it } from 'vitest'; import { KioskClient, KioskTransaction, - Network, percentageToBasisPoints, TransferPolicyTransaction, } from '../../src'; @@ -56,7 +55,7 @@ describe('Testing Kiosk SDK transaction building & querying e2e', () => { kioskClient = new KioskClient({ client: toolbox.client, - network: Network.CUSTOM, + network: 'localnet', packageIds: { kioskLockRulePackageId: extensionsPackageId, royaltyRulePackageId: extensionsPackageId, diff --git a/sdk/kiosk/test/e2e/setup.ts b/sdk/kiosk/test/e2e/setup.ts index 77bb9f31eeb..4271feaf61e 100644 --- a/sdk/kiosk/test/e2e/setup.ts +++ b/sdk/kiosk/test/e2e/setup.ts @@ -4,6 +4,7 @@ import { execSync } from 'child_process'; import { mkdtemp } from 'fs/promises'; +import { writeFileSync } from 'fs'; import { tmpdir } from 'os'; import path from 'path'; import type { @@ -15,7 +16,7 @@ import { getFullnodeUrl, IotaClient } from '@iota/iota-sdk/client'; import { FaucetRateLimitError, getFaucetHost, - requestIotaFromFaucetV0, + requestIotaFromFaucetV1, } from '@iota/iota-sdk/faucet'; import { Ed25519Keypair } from '@iota/iota-sdk/keypairs/ed25519'; import { Transaction } from '@iota/iota-sdk/transactions'; @@ -33,6 +34,18 @@ const DEFAULT_FULLNODE_URL = import.meta.env.VITE_FULLNODE_URL ?? getFullnodeUrl //@ts-expect-error env not found on meta const IOTA_BIN = import.meta.env.VITE_IOTA_BIN ?? 'cargo run --bin iota'; +const CONFIG_DATA = ` +--- +keystore: + File: ~/.iota/iota_config/iota.keystore +envs: + - alias: localnet + rpc: "http://localhost:9000" + ws: ~ + basic_auth: ~ +active_env: localnet +`; + export class TestToolbox { keypair: Ed25519Keypair; client: IotaClient; @@ -64,7 +77,7 @@ export async function setupIotaClient() { const keypair = Ed25519Keypair.generate(); const address = keypair.getPublicKey().toIotaAddress(); const client = getClient(); - await retry(() => requestIotaFromFaucetV0({ host: DEFAULT_FAUCET_URL, recipient: address }), { + await retry(() => requestIotaFromFaucetV1({ host: DEFAULT_FAUCET_URL, recipient: address }), { backoff: 'EXPONENTIAL', // overall timeout in 60 seconds timeout: 1000 * 60, @@ -76,6 +89,7 @@ export async function setupIotaClient() { const tmpDirPath = path.join(tmpdir(), 'config-'); const tmpDir = await mkdtemp(tmpDirPath); const configPath = path.join(tmpDir, 'client.yaml'); + writeFileSync(configPath, CONFIG_DATA, { flag: 'w', flush: true }); execSync(`${IOTA_BIN} client --yes --client.config ${configPath}`, { encoding: 'utf-8' }); return new TestToolbox(keypair, client, configPath); } @@ -221,6 +235,7 @@ export async function executeTransaction( showEvents: true, showObjectChanges: true, }, + requestType: 'WaitForLocalExecution', }); expect(resp.effects?.status.status).toEqual('success'); return resp; diff --git a/sdk/kiosk/vitest.config.ts b/sdk/kiosk/vitest.config.ts index f9ddd6d1d8b..458d3c2cdad 100644 --- a/sdk/kiosk/vitest.config.ts +++ b/sdk/kiosk/vitest.config.ts @@ -3,6 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 import { defineConfig } from 'vitest/config'; +import { config } from 'dotenv'; export default defineConfig({ test: { @@ -12,6 +13,7 @@ export default defineConfig({ testTimeout: 1000000, env: { NODE_ENV: 'test', + ...config({ path: '../.env.defaults' }).parsed, }, }, resolve: { diff --git a/sdk/typescript/src/utils/format.ts b/sdk/typescript/src/utils/format.ts index 1648cf629cb..8f54589df70 100644 --- a/sdk/typescript/src/utils/format.ts +++ b/sdk/typescript/src/utils/format.ts @@ -2,6 +2,8 @@ // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 +import { isValidIotaAddress, isValidIotaObjectId, IOTA_ADDRESS_LENGTH } from './iota-types.js'; + const ELLIPSIS = '\u{2026}'; export function formatAddress(address: string) { @@ -18,3 +20,14 @@ export function formatDigest(digest: string) { // Use 10 first characters return `${digest.slice(0, 10)}${ELLIPSIS}`; } + +export function formatType(type: string) { + const objectAddressPattern = new RegExp(`0x[a-fA-F0-9]{${IOTA_ADDRESS_LENGTH * 2}}`, 'g'); + const matches = type.match(objectAddressPattern) ?? []; + for (const match of matches) { + if (isValidIotaAddress(match) || isValidIotaObjectId(match)) { + type = type.replace(match, formatAddress(match)); + } + } + return type; +} diff --git a/sdk/typescript/src/utils/index.ts b/sdk/typescript/src/utils/index.ts index 231636ad254..3f579b43063 100644 --- a/sdk/typescript/src/utils/index.ts +++ b/sdk/typescript/src/utils/index.ts @@ -2,7 +2,7 @@ // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 -export { formatAddress, formatDigest } from './format.js'; +export { formatAddress, formatDigest, formatType } from './format.js'; export { isValidIotaAddress, isValidIotaObjectId, diff --git a/sdk/typescript/test/unit/format.test.ts b/sdk/typescript/test/unit/format.test.ts new file mode 100644 index 00000000000..9c4197d06f5 --- /dev/null +++ b/sdk/typescript/test/unit/format.test.ts @@ -0,0 +1,19 @@ +// Copyright (c) 2024 IOTA Stiftung +// SPDX-License-Identifier: Apache-2.0 + +import { describe, expect, it } from 'vitest'; +import { formatType } from '../../src/utils'; + +describe('Formatters', () => { + it('formatType formats correctly', async () => { + const typeClock = '0x2::clock::Clock'; + expect(formatType(typeClock), '0x0000…0002::clock::Clock'); + + const typeCoolCoin = + '0x2::coin::Coin<0x2e0b8d1e74947a2d97121bc7b7981eaff1f32911d15c5e0921fdd08cf61f445b::cool_coin::COOL_COIN>'; + expect( + formatType(typeCoolCoin), + '0x0000…0002::coin::Coin<x2e0b8d…445b::cool_coin::COOL_COIN>', + ); + }); +});